I have a eureka
server and some services(spring-boot
apps), they register to the eureka
and use the Feign
to communicate with each other. I also have a big old app using spring
. it is packed into war
and deployed into a jetty server
. I can't rewrite it using spring-boot
, but the app has to communicate with other services through the Feign
and Eureka
. Also i can use spring-cloud
into the app if it helps.
How could i use eureka+feign without spring-boot? Please help me.