Reputation: 7021
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
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