博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringCloud学习成长之路三 服务消费者(Feign)
阅读量:5839 次
发布时间:2019-06-18

本文共 4168 字,大约阅读时间需要 13 分钟。

一、Feign简介

  Feign是一个声明式的伪Http客户端,它使得写Http客户端变得更简单。使用Feign,只需要创建一个接口并注解。

  它具有可插拔的注解特性,可使用Feign 注解和JAX-RS注解。Feign支持可插拔的编码器和解码器。

  Feign默认集成了Ribbon,并和Eureka结合,默认实现了负载均衡的效果。

简而言之:

  • Feign 采用的是基于接口的注解
  • Feign 整合了ribbon

二、准备工作

  使用之前做好的项目文件, 启动eureka-server,端口为8761; 启动service-hi 两次,端口分别为8762 、8763.

三、创建一个feign的服务

  新建一个spring-boot工程,取名为serice-feign,在它的pom文件引入Feign的起步依赖spring-cloud-starter-feign、Eureka的起步依赖spring-cloud-starter-eureka、Web的起步依赖spring-boot-starter-web,代码如下:

4.0.0
com.forezp
service-feign
0.0.1-SNAPSHOT
jar
service-feign
Demo project for Spring Boot
org.springframework.boot
spring-boot-starter-parent
1.5.2.RELEASE
UTF-8
UTF-8
1.8
org.springframework.cloud
spring-cloud-starter-eureka
org.springframework.cloud
spring-cloud-starter-feign
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-test
test
org.springframework.cloud
spring-cloud-dependencies
Dalston.RC1
pom
import
org.springframework.boot
spring-boot-maven-plugin
spring-milestones
Spring Milestones
https://repo.spring.io/milestone
false

 

  在工程的配置文件application.yml文件,指定程序名为service-feign,端口号为9900,服务注册地址为http://localhost:8761/eureka/ ,代码如下:

eureka:  client:    serviceUrl:      defaultZone: http://localhost:8761/eureka/server:  port: 9900spring:  application:    name: service-feign

  在程序的启动类ServiceFeignApplication ,加上@EnableFeignClients注解开启Feign的功能:

@SpringBootApplication@EnableDiscoveryClient@EnableFeignClientspublic class ServiceFeignApplication {    public static void main(String[] args) {        SpringApplication.run(ServiceFeignApplication.class, args);    }}

  定义一个feign接口,通过@ FeignClient(“服务名”),来制定使用哪个Eureka客户端服务

  接口方法上加上@RequestMapping(value = "/hi",method = RequestMethod.GET)表示调用路径为/hi的方法get方式 传递参数为  String  name

代码如下:

/** * Created by fangzhipeng on 2017/4/6. */@FeignClient(value = "service-hi")
@Service
public interface SchedualServiceHi {   @RequestMapping(value = "/hi",method = RequestMethod.GET)   String sayHiFromClientOne(@RequestParam(value = "name") String name); }

  在Web层的controller层,对外暴露一个”/hi”的API接口,通过上面定义的Feign客户端SchedualServiceHi 来消费服务。代码如下:

@RestControllerpublic class HiController {    @Autowired    SchedualServiceHi schedualServiceHi;    @RequestMapping(value = "/hi",method = RequestMethod.GET)    public String sayHi(@RequestParam String name){        return schedualServiceHi.sayHiFromClientOne(name);    }}

启动程序,使用postMan工具多次多次访问http://localhost:9900/hi?name=kksks    交替显示调用8762    8763

 

hi kksks,i am from port:8762

hi kksksi am from port:8763

转载于:https://www.cnblogs.com/kuoAT/p/9141886.html

你可能感兴趣的文章
以C#编写的Socket服务器的Android手机聊天室Demo
查看>>
第7个httpClient 例子--httpclient+jsoup解析
查看>>
link
查看>>
mac系统下安装、启动、停止mongodb
查看>>
简单的广义表实现
查看>>
python处理iis日志——统计页面的访问量
查看>>
.net core和.net framework相对应的一些写法
查看>>
工具类获取Spring的ApplicationContext对象(转)
查看>>
Python Tutorial 实践(1)
查看>>
MySQL主从库数据的一致性——percona-toolkit工具集
查看>>
jstl比较标签
查看>>
Cloudera CDH 、Hortonworks DHP和MapR比较
查看>>
linux日志管理/优化/切割/轮回
查看>>
CRC32校验算法C语言版(查表法)
查看>>
本地运行Kmeans算法
查看>>
VC++动态链接库(DLL)编程[精]
查看>>
运维开发中内建模块getopt的最佳实践
查看>>
Maven初步入门(二)
查看>>
职场四大减压法宝:改变心境
查看>>
pg_ctl
查看>>