Spring cloud使用 - openfeign
openfeign
openfiegn是一个声明式的REST客户端,也就是它可以在微服务中替换 RestTemplate
。
引入
- pom.xml中新增依赖
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
- Application中,添加
@EnableFeignClients
注解 - 新建一个Java接口
FeignConsumerService
,内容如下:
@FeignClient("consumerservice")
public interface FeignConsumerService {
@RequestMapping(method = RequestMethod.GET, value = "/consumer/{id}")
TConsumer queryById(@PathVariable("id") Integer id);
}
在实现类中使用:
引入bean
@Resource
private FeignConsumerService feignConsumerService;
方法调用:
TConsumer tConsumer = feignConsumerService.queryById(consumerId);
这样我们就由之前调用微服务的方式由RestTemplate
的方式改成了调用接口的方式。
// 使用restTemplate
String url = "http://consumerservice/consumer/" + consumerId;
TConsumer tConsumer = restTemplate.getForObject(url, TConsumer.class);
// 使用 openfeign
TConsumer tConsumer = feignConsumerService.queryById(consumerId);
从这两种方式可以比较出,使用openfeign我们可以像调用服务的方式一样,服务.方法
去调用微服务,不会在业务代码中看到有url
这样的标识。
使用建议
在微服务架构中,可以以如下方式使用openfeign
更优雅的实现服务的调用。
- 抽取调用接口;
- 接口以openfeign的方式提供出
- 提供者 消费者使用相同的接口api。
也是是说,我们可以让提供者减少controller这一层调用。也就是直接在service层去实现rest调用。
代码如下:
api module:
提供者服务层,直接在service.impl这一层提供rest请求:
消费者代码:
在消费者的Application上需要添加 @EnableFeignClients(basePackages ={"cn.geoary.api.*"})
注解 是引入的api注入到bean容器中。
至此服务拆分完成。现在将服务接口于实现方 调用方 进行了解耦。在后续的开发中,我们接口先行,这样 实现 调用可以并行开发,提高开发效率。