赞
踩
通常服务间调用conreoller接口我们可通过
而OpenFeign则是一个更加方便的HTTP客户端,OpenFeign为Feign的升级版,在Feign的基础上增加了支持REST调用,通过注解绑定服务name和路径端口进行调用
OpenFeign的简单使用:
1 . 首先需要引入OpenFeign的依赖注解:
- <!--远程调用openfeign-->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-openfeign</artifactId>
- </dependency>
- <!--openfeign默认使用的是loadBalance的负载均衡器-->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-loadbalancer</artifactId>
- </dependency>
2 . 创建OpenFeign调用接口BusinessFeign
3 . 并将该类使用 @FeignClient 注解将该接口变成OpenFeign的客户端
4 . 其次需要给每个服务配置服务名,OpenFeign客户端才能成功扫描到
spring.application.name=business
5 . 同时需要在注解中配置需要调用服务的name,同时也可配置需要调用服务的IP端口
同时也可使用将服务注册到注册中心直接调用
6 . 在OpenFeign客户端中配置访问的方法接口,定义请求方式,请求前缀及返回类型(与被调用服务接口一致即可)
- //@FeignClient("business") //当business存在多台服务器时,此配置可通过负载均衡访问各服务器
- @FeignClient(name = "business", url = "http://localhost:8000/business")
- public interface BusinessFeign {
-
- @GetMapping("/hello")
- public String hello();
- }
7 . 最后还需要对SpringBoot启动类添加 @EnableFeignClients("//openfeign客户端包地址") ,让Spring能启动并扫描到该OpenFeign客户端
最后对OpenFeign客户端及接口进行测试,直接注入OpenFeign客户端Bean,并调用客户端中的方法即可,最后会将被调用方的结果返回给该方法
- @Resource
- BusinessFeign businessFeign;
-
- @GetMapping("/hello")
- public String hello(){
- String hello = businessFeign.hello();
- LOG.info("远程调用business响应结果:{}", hello);
- return hello;
- }
总结:openfeign是微服务之间互相调用的重要方法,也可结合注册中心进行进一步的使用,在微服务调用的使用频率也是比较高的,后续也还会持续更新升级~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。