博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【微服务架构】SpringCloud之Feign(五)
阅读量:4948 次
发布时间:2019-06-11

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

Feign简介

 

Feign 是一个声明web服务客户端,这便得编写web服务客户端更容易,使用Feign 创建一个接口并对它进行注解,它具有可插拔的注解支持包括Feign注解与JAX-RS注解,Feign还支持可插拔的编码器与解码器,Spring Cloud 增加了对 Spring MVC的注解,Spring Web 默认使用了HttpMessageConverters, Spring Cloud 集成 Ribbon 和 Eureka 提供的负载均衡的HTTP客户端 Feign.

 

 

声明式REST客户端:Feign

 

先要启动eureka_register_service工程(注册中心)和biz-service-0工程(服务生产者)

 

 

创建一个maven工程eureka_feign_client

pom.xml

 

org.springframework.boot
spring-boot-starter-parent
1.4.3.RELEASE
 
UTF-8
1.8
    
        
org.springframework.cloud
        
spring-cloud-starter-feign
    
    
        
org.springframework.cloud
        
spring-cloud-starter-eureka
    
    
        
org.springframework.boot
        
spring-boot-starter-web
    
    
        
org.springframework.boot
        
spring-boot-starter-test
        
test
    
    
        
    
org.springframework.cloud
    
spring-cloud-dependencies
    
Brixton.SR5
    
pom
    
import
    

 

 

在应用主类中通过@EnableFeignClients注解开启Feign功能

启动文件FeignApplication.java

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

 

定义服务接口类UserClient.java

使用@FeignClient("biz-service-0")注解来绑定该接口对应biz-service-0服务

@FeignClient("biz-service-0")public interface UserClient {    @RequestMapping(method = RequestMethod.GET, value = "/getuser")    public User getuserinfo();        @RequestMapping(method = RequestMethod.GET, value = "/getuser")    public String getuserinfostr();        @RequestMapping(method = RequestMethod.GET, value = "/info")    public  String  info();}

 

在web层中调用上面定义的UserController,具体如下

@RestControllerpublic class UserController {    @Autowired    UserClient userClient;    @RequestMapping(value = "/getuserinfo", method = RequestMethod.GET)    public User getuserinfo() {        return userClient.getuserinfo();    }        @RequestMapping(value = "/getuserinfostr", method = RequestMethod.GET)    public String getuserinfostr() {        return userClient.getuserinfostr();    }        @RequestMapping(value = "/info", method = RequestMethod.GET)    public String info() {        return userClient.info();    }}

application.properties配置变量

 

 

spring.application.name=feign-consumerserver.port=8004eureka.client.serviceUrl.defaultZone=http://localhost:8000/eureka/

 

 

 

访问 

 

 

总结:

其实通过Feign封装了HTTP调用服务方法,使得客户端像调用本地方法那样直接调用方法,类似Dubbo中暴露远程服务的方式,区别在于Dubbo是基于私有二进制协议,而Feign本质上还是个HTTP客户端

转载于:https://www.cnblogs.com/xiaojunbo/p/7094377.html

你可能感兴趣的文章
git clone 遇到的问题
查看>>
hdfs 命令使用
查看>>
hdu 1709 The Balance
查看>>
prometheus配置
查看>>
定宽320 缩放适配手机屏幕
查看>>
BZOJ 2120 数颜色 【带修改莫队】
查看>>
【noip2004】虫食算——剪枝DFS
查看>>
Codeforces 40 E. Number Table
查看>>
CLR via C#(第3 版)
查看>>
java语法之final
查看>>
关于响应式布局
查看>>
详解ASP.Net 4中的aspnet_regsql.exe
查看>>
python 多进程和多线程的区别
查看>>
hdu1398
查看>>
[android] 网络断开的监听
查看>>
156.Binary Tree Upside Down
查看>>
MongoDB在windows下安装配置
查看>>
Upselling promotion stored procedure
查看>>
mysql编码配置
查看>>
KVM地址翻译流程及EPT页表的建立过程
查看>>