OpenFeign时Spring官放推出的一款声明式服务调用与负载均衡组件
它对Netflix 公司的Feign进行了二次封装也就是说它支持Feign的所有功能,并再次基础上进行了改进使得能够支持SpringMVC的注解(例如:@RequestMapping、@GetMapping 和 @PostMapping 等)
OpenFeign常用注解如下
@EnableFeignClients - 该注解用于开启 OpenFeign 功能,当 Spring Cloud 应用启动时,OpenFeign 会扫描标有 @FeignClient 注解的接口,生成代理并注册到 Spring 容器中
@FeignClient - 该注解用于通知 OpenFeign 组件对 @RequestMapping 注解下的接口进行解析,并通过动态代理的方式产生实现类,实现负载均衡和服务调用
@RequestMapping - Spring MVC 注解,在 Spring MVC 中使用该注解映射请求,通过它来指定控制器(Controller)可以处理哪些 URL 请求,相当于 Servlet 中 web.xml 的配置
@GetMapping - Spring MVC 注解,用来映射 GET 请求,它是一个组合注解,相当于 @RequestMapping(method = RequestMethod.GET)
@PostMapping - Spring MVC 注解,用来映射 POST 请求,它是一个组合注解,相当于 @RequestMapping(method = RequestMethod.POST)
OpenFeign的依赖如下
<!-- openfeign -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
yml文件修改一下Eureka的配置如下
eureka:
client:
registerWithEureka: true #服务消费者可以不向服务注册中心注册服务
fetchRegistry: true #服务消费者客户端需要去检索服务
serviceUrl:
defaultZone: http://@localhost:8761/eureka/
在服务调回者的启动类上加上 @EnableFeignClients 注解 开启 OpenFeign 功能
编写一个接口并在该接口上使用 @FeignClient注解 如下
@Component
//此注解中的value的值,服务提供者,yml文件中的 spring.application.name
@FeignClient(value = "future-customer")
public interface fCustomerService {
//对应服务提供者 Controller 中定义的方法,url也要保持一致
@RequestMapping(value = "/getOrders", method = RequestMethod.GET)
String getOrdrs();
}
OpenFigen的超时情况
- 默认超时时间为一秒,即如果服务提供者超过一秒没有给出响应就会提示失败
- 要自定义超时时间的化在yml文件中进行如下设置就行
ribbon:
ReadTimeout: 6000 #建立连接所用的时间,适用于网络状况正常的情况下,两端两端连接所用的时间
ConnectionTimeout: 6000 #建立连接后,服务器读取到可用资源的时间