I have a working Feign interface defined as:
@FeignClient(\"content-link-service\") public interface ContentLinkServiceClient { @RequestMapping(method = Req
I wouldn't expect this to work.
@RequestLine is a core Feign annotation, but you are using the Spring Cloud @FeignClient which uses Spring MVC annotations.
@RequestLine
@FeignClient