@FeignClient("microservice-provider-user") public interface UserFeignClient { @RequestMapping(value = "/simple/{id}", method = RequestMethod.GET) public User findById(@PathVariable("id") Long id); ... }
这边的@RequestMapping(value = "/simple/{id}", method = RequestMethod.GET)
不能写成@GetMapping("/simple/{id}")
。java
@FeignClient("microservice-provider-user") public interface UserFeignClient { @RequestMapping(value = "/simple/{id}", method = RequestMethod.GET) public User findById(@PathVariable("id") Long id); ... }
这边的@PathVariable("id")
中的”id”,不能省略,必须指定。spring
若是想要请求microservice-provider-user 服务,而且参数有多个例如:http://microservice-provider-user/query-by?id=1&username=张三 要怎么办呢?app
直接使用复杂对象:ide
@FeignClient("microservice-provider-user") public interface UserFeignClient { @RequestMapping(value = "/query-by", method = RequestMethod.GET) public User queryBy(User user); ... }
该请求不会成功,只要参数是复杂对象,即便指定了是GET方法,feign依然会以POST方法进行发送请求。ui
正确的写法:url
写法1:spa
@FeignClient("microservice-provider-user") public interface UserFeignClient { @RequestMapping(value = "/query-by", method = RequestMethod.GET) public User queryBy(@RequestParam("id")Long id, @RequestParam("username")String username); }
写法2:code
@FeignClient(name = "microservice-provider-user") public interface UserFeignClient { @RequestMapping(value = "/query-by", method = RequestMethod.GET) public List<User> queryBy(@RequestParam Map<String, Object> param); }
咱们知道Feign自己就是支持Hystrix的,能够直接使用@FeignClient(value = "microservice-provider-user", fallback = XXX.class)
来指定fallback的类,这个fallback类集成@FeignClient所标注的接口便可。可是在实际项目中发现fallback没有效果。原来是咱们须要开启Hystrix:xml
feign.hystrix.enabled=true
假设咱们须要使用Hystrix Stream进行监控,默认状况下,访问http://IP:PORT/hystrix.stream 是个404。如何为Feign增长Hystrix Stream支持呢?对象
须要如下两步:
第一步:添加依赖,示例:
<!-- 整合hystrix,其实feign中自带了hystrix,引入该依赖主要是为了使用其中的hystrix-metrics-event-stream,用于dashboard --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-hystrix</artifactId> </dependency>
第二步:在启动类上添加@EnableCircuitBreaker 注解
这样修改之后,访问任意的API后,再访问http://IP:PORT/hystrix.stream,就会展现出一大堆的API监控数据了。
若是包重叠,将会致使全部的Feign Client都会使用该配置。
(1) serviceId属性已经失效,尽可能使用name属性。例如:@FeignClient
(serviceId =
"microservice-provider-user"
)
这么写是不推荐的,应写为:@FeignClient
(name =
"microservice-provider-user"
)
(2) 在使用url属性时,在老版本的Spring Cloud中,不须要提供name属性,可是在新版本(例如Brixton、Camden)@FeignClient必须提供name属性,而且name、url属性支持占位符。例如:
@FeignClient
(name =
"${feign.name}"
, url =
"${feign.url}"
)