spring cloud Feign使用@RequestLine注解问题
来源:https://blog.csdn.net/zxl646801924/article/details/80626522
spring boot 项目需要调用其它项目的接口试使用spring cloud feign声明式调用。
/**
* 客户端请去
* @author Administrator
*
*/
@FeignClient(name="microservice-provider-user")
public interface UserFeignClient {
@RequestLine("GET /simple/{id}")
public User findById(@Param("id") Long id);
}
启动报错: Method getLinksForTrack not annotated with HTTP method type (ex. GET, POST)
网上百度下都是说 @RequestLine is a core Feign annotation, but you are using the Spring Cloud @FeignClientwhich uses Spring MVC annotations.
意思就是feign 默认使用的是spring mvc 注解(就是RequestMapping 之类的), 所以需要配置feign的Configuration ..
/**
* @Description: feign配置使用RequestLine注解
*/
@Configuration
public class FeignClientConfig {
@Bean
public Contract feignContract() {
return new feign.Contract.Default();
}
}
最后使用Feign的客户端上增加注解就可以使用feign的注解,RequestLine了
/**
* 客户端请去
* @author Administrator
*
*/
@FeignClient(name="microservice-provider-user",configuration=FeignConfiguration.class)
public interface UserFeignClient {
@RequestLine("GET /simple/{id}")
public User findById(@Param("id") Long id);
}
————————————————
版权声明:本文为CSDN博主「lockie_zou」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/zxl646801924/article/details/80626522