上篇文章我们写了service-user服务提供者,并使用ribbon的方式去调用,本次,我们依然使用上一章节中的service-user作为服务提供者,改为使用feign去消费这个微服务
feign客户端和ribbon 类似,同样实现了客户端的负载均衡,与ribbon不同的是,feign的调用与本地接口的调用更加类似,并且更加便捷、更加优雅,传入参数较多时得以体现,当然,在实际项目中,两者可能都会用到,下面来写一下feign的实现
一、创建一个服务消费者 feign
1、创建项目
选择Feign 和 Eureka Server点击完成
pom.xml如下:
4.0.0 com.mayi.springcloud bussnessservice-user-client-feign 0.0.1-SNAPSHOT jar bussnessservice-user-client-feign 用户中心服务调用者feign org.springframework.boot spring-boot-starter-parent 2.0.1.RELEASE UTF-8 UTF-8 1.8 Finchley.M9 org.springframework.cloud spring-cloud-starter-netflix-eureka-server org.springframework.cloud spring-cloud-starter-openfeign org.springframework.boot spring-boot-starter-test test org.springframework.cloud spring-cloud-dependencies ${spring-cloud.version} pom import org.springframework.boot spring-boot-maven-plugin spring-milestones Spring Milestones https://repo.spring.io/milestone false
2、修改配置
bootstrap.yml
spring: application: name: service-user-client-feignserver: port: 9001
在启动类添加@EnableFeignClients以启动feign客户端
package com.mayi.springcloud;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.cloud.netflix.eureka.EnableEurekaClient;import org.springframework.cloud.openfeign.EnableFeignClients;@SpringBootApplication@EnableEurekaClient@EnableFeignClientspublic class BussnessserviceUserClientFeignApplication { public static void main(String[] args) { SpringApplication.run(BussnessserviceUserClientFeignApplication.class, args); }}
3、具体实现代码
新建两个包:api 和 client 并创建相应的实现类
说明: UserFeignClient 是feign接口, UserFeignApi 是feign接口的调用者
UserFeignClient 代码如下:
package com.mayi.springcloud.client;import org.springframework.cloud.openfeign.FeignClient;import org.springframework.web.bind.annotation.GetMapping;@FeignClient(name="service-user")public interface UserFeignClient { @GetMapping("/listUsers") public String listUsers(); }
解释:
- @FeignClient(name="service-user") 标明feign调用的微服务名称
- @GetMapping("/listUsers") 对应service-user微服务中的URL
UserFeignApi 代码如下:
package com.mayi.springcloud.api;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.web.bind.annotation.RestController;import com.mayi.springcloud.client.UserFeignClient;@RestControllerpublic class UserFeignApi { @Autowired private UserFeignClient userFeignClient; @GetMapping("/listUsersByFeign") public String ListUsers(){ String users = this.userFeignClient.listUsers(); return users; } }
解释:
将刚才定义的userFeignClient注入,并当成普通的接口调用即可4、测试
启动两个service-user服务:端口分别为 8801 和 8802
访问::9001/listUsersByFeign
结果页面如下:
至此,feign的整合已完成,
下篇文章,我们将要介绍配置中心的使用
接下来,我会依次更新文章,直至整个架构完成,如有兴趣的朋友关注作者 或 加我微信 拉你进入spring cloud社区群
关注微信公众号:java架构师修行
本公众号从2018-5.1日 - 2019.5.1日期间,将要按照JAVA高级软件架构师实战培训的路线发布一期完整的架构文章,难度由浅入深,适合有一定开发基础想转架构和正在做初级架构开发的人员学习