博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java版b2b2c社交电商spring cloud分布式微服务 (三) 服务消费者(Feign)
阅读量:7201 次
发布时间:2019-06-29

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

hot3.png

一、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);    }}

启动程序,多次访问,浏览器交替显示:

hi forezp,i am from port:8762 hi forezp,i am from port:8763

需要JAVASpring Cloud大型企业分布式微服务云构建的B2B2C电子商务社交平台源码请加企鹅求求:一零三八七七四六二六

转载于:https://my.oschina.net/u/4045192/blog/3046148

你可能感兴趣的文章
【灵性觉醒】解忧杂货店感悟
查看>>
"log_bin.index not found" 启动报错解决
查看>>
SFB 项目经验-36-分配公网证书 For SFB 2015-前端服务器(图解)
查看>>
SFB 项目经验-52-Outlook-2010/2013-连接Exchange 2016需要密码!
查看>>
白盒测试不是测试,更不高级
查看>>
思科防火墙PIX8.0 L2L***解决地址重叠测试(3)
查看>>
FusionInsight HD 客户端安装与使用
查看>>
EIGRP选路和DUAL算法
查看>>
php+mysql手注拿shell教程【朋友给的】
查看>>
Xtradb+Haproxy高可用数据库集群(四)集群zabbix监控篇
查看>>
CentOS 6使用openssl搭建根CA
查看>>
使用 OpenLDAP 验证 Open*** 用户登录访问
查看>>
精通MVC3摘译(7)-处理输出(1)
查看>>
读书笔记1:简单工厂模式
查看>>
EIT造形與Socket代码
查看>>
用户加入域的步骤
查看>>
用owncloud 打造自己的云盘
查看>>
Linux下的TCP Wrapper机制
查看>>
ngx lua模块之ngx.location.capture子请求学习
查看>>
linux 意外删除与恢复
查看>>