Mohamed Taboubi
Mohamed Taboubi

Reputation: 7021

difference between openfeign or feign

What is the difference between:

I found this issue when I was trying to follow a tutorial using openfeign @FeignClient(name=...). However, I was using feign, not openfeign, and this annotation was not the same.

Isn't it the same thing?

Upvotes: 6

Views: 3434

Answers (1)

Kevin Davis
Kevin Davis

Reputation: 1303

OpenFeign is the spiritual successor to Feign, originally provided by Netflix. The projects name was changed when the original project was released to the community. The correct dependency is spring-cloud-starter-openfeign.

Upvotes: 9

Related Questions