博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
企业分布式微服务云SpringCloud SpringBoot mybatis (三) 服务消费者(Feign)
阅读量:6257 次
发布时间:2019-06-22

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

一、Feign简介

Feign是一个声明式的伪Http客户端,它使得写Http客户端变得更简单。使用Feign,只需要创建一个接口并注解。它具有可插拔的注解特性,可使用Feign 注解和JAX-RS注解。Feign支持可插拔的编码器和解码器。Feign默认集成了Ribbon,并和Eureka结合,默认实现了负载均衡的效果。

简而言之:

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

二、准备工作

继续用上一节的工程, 启动eureka-server,端口为8761; 启动service-hi 两次,端口分别为8762 、8773.

三、创建一个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,端口号为8765,服务注册地址为 ,代码如下:
eureka:  client:    serviceUrl:      defaultZone: http://localhost:8761/eureka/server:  port: 8765spring:  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(“服务名”),来指定调用哪个服务。比如在代码中调用了service-hi服务的“/hi”接口,代码如下:

/** * Created by fangzhipeng on 2017/4/6. */@FeignClient(value = "service-hi")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);    }}

  架构代码如下:

"分布式b2b <wbr

 

 

转载于:https://www.cnblogs.com/xiamudaren/p/8421062.html

你可能感兴趣的文章
MySQL中TIMESTAMPDIFF和TIMESTAMPADD函数的用法
查看>>
java多态
查看>>
定时关闭的对话框窗口
查看>>
超简代码版设计模式系列二
查看>>
[arm驱动]linux设备地址映射到用户空间
查看>>
[linux c] fork 等函数编写执行命令实验
查看>>
接口测试
查看>>
sql server2008安装图解
查看>>
认识队列技术中的硬件队列和软件队列及如何改变硬件队列长度
查看>>
http://blog.csdn.net/qidong7/article/details/53244346
查看>>
数组拆分 I array-partition leetcode python
查看>>
shell编程之正则表达式
查看>>
BGP的选路原则
查看>>
超大数相加C语言程序设计
查看>>
Linux 汇编的&限制符
查看>>
Java单元测试Junit的Annotation介绍
查看>>
我的友情链接
查看>>
SQL2008自动备份并发邮件通知管理员
查看>>
安装配置无线 SONOS HIFI 系统 (完整版)
查看>>
vim入门技巧
查看>>