un8.2:springcloud——使用feign实现微服务之间的调用。

Feign是Netflix开发的声明式、模板化的HTTP客户端, Feign可以帮助我们更快捷、优雅地实现微服务之间的调用。
一、Feign的优点是什么?

1.feign采用的是基于接口的注解;

2.feign整合了ribbon,具有负载均衡的能力;

3.整合了Hystrix,具有熔断的能力。
二、项目编码

        服务消费者content-center(内容中心微服务)向服务提供者user-center(用户中心微服务)发送请求,获取用户的微信昵称,我们通过Feign来实现该需求。

请求路径:http://localhost:8082/user/1

响应的json数据:

User u1 = new User(1, "小峰", "bigBadEgg", "https://sdjklsjfklsdfjklsf.jpg");
User u2 = new User(2, "小坏蛋", "lttleBadEgg", "https://sdjklsjfklsdfjklsf.jpg");

 2.1、在pom.xml中添加依赖

 
        org.springframework.cloud
        spring-cloud-starter-openfeign
    
    
        io.github.openfeign
        feign-httpclient
    

2.2、在BootApplication中添加@EnableFeignClients注解

package com.example.content_center;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;

@SpringBootApplication
@EnableFeignClients
public class ContentCenterApplication {

    public static void main(String[] args) {
        SpringApplication.run(ContentCenterApplication.class, args);
    }

}

2.3、新建FeignClient实现Feign远程请求

package com.example.content_center.feignclient;

import com.example.content_center.entity.User;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;

//Feign访问微服务的名称
@FeignClient(name = "user-center")
public interface UserCenterFeignClient {
    /**
     * Feign会自动构建URL为http://user-center/user/get_user?id=xxx
     *
     * @param id
     * @return
     */
    @GetMapping("/user/get_user")
    User findById(@RequestParam int id);
}

2.4、新建测试Controller

package com.example.content_center.controller;

import com.example.content_center.entity.User;
import com.example.content_center.feignclient.UserCenterFeignClient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/content")
public class ContentController {
    @Autowired
    private UserCenterFeignClient feignClient;
    @GetMapping("/test")
    public User test(){
        //去user-center微服务中获取童用户信息
        return feignClient.findById(1);
    }
}

2.5、测试效果

访问UserController可以通过feign顺利调用到user-center中的方法

http://localhost:8070/user/get_user?id=1


三、Feign自定义日志级别

级别 打印内容
NONE(默认值) 不记录任何日志
BASIC 仅记录请求方法、URL、请求状态码以及执行时间
HEADERS BASIC级别的基础之上,记录请求和响应的header
FULL 记录请求和响应的header、body和元数据

1、在application.yml添加属性,在application.yml中结合log添加属性  

 #设置日志输出级别
    logging:
      level:
        com.itmuch.contentcenter.feignclient.UserCenterFeignClient: debug
    feign:
      client:
        config:
          #想要调用的微服务的名称
          user-center:
            loggerLevel: full

2、测试效果

un8.2:springcloud——使用feign实现微服务之间的调用。_第1张图片

四、Feign支持的配置项

配置项   作用
Logger.Level  指定日志级别
Retryer 指定重试策略
ErrorDecoder  指定错误解码器
Request.Options 超时时间
Collection    拦截器
SetterFactory  用于设置Hystrix的配置属性,当Feign整合Hystrix时才会使用

application.yml配置参考

un8.2:springcloud——使用feign实现微服务之间的调用。_第2张图片

五、多参数请求

1、多参数可以使用@SpringQueryMap注解实现

  package com.itmuch.contentcenter.feignclient;
     
    import com.itmuch.contentcenter.domain.dto.user.UserDTO;
    import org.springframework.cloud.openfeign.FeignClient;
    import org.springframework.cloud.openfeign.SpringQueryMap;
    import org.springframework.web.bind.annotation.GetMapping;
     
    @FeignClient(name = "user-center")
    public interface TestUserCenterFeignClient {
        @GetMapping("/q")
        UserDTO query(@SpringQueryMap UserDTO userDTO);
    }

 注意,在开发中可能会出现多个Feign接口访问同一个微服务的情况,解决方法:

2、在application.yml中添加属性配置

 spring:
      #解决Feign多个Client接口指向同一个微服务出现异常的问题
      main:
        allow-bean-definition-overriding: true

六、脱离Nacos单独使用Feign
1、新建FeignClient,请求user-center

package com.example.content_center.feignclient;

import com.example.content_center.entity.User;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;

//Feign访问微服务的名称
@FeignClient(name = "user-center")
public interface UserCenterFeignClient {
    /**
     * Feign会自动构建URL为http://user-center/user/get_user?id=xxx
     *
     * @param id
     * @return
     */
    @GetMapping("/user/get_user")
    User findById(@RequestParam int id);
}

2、在测试Controller中调用FeignClient方法

package com.example.content_center.controller;

import com.example.content_center.entity.User;
import com.example.content_center.feignclient.UserCenterFeignClient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/content")
public class ContentController {
    @Autowired
    private UserCenterFeignClient feignClient;
    @GetMapping("/test")
    public User test(){
        //去user-center微服务中获取童用户信息
        return feignClient.findById(1);
    }
}

3、测试效果,网址:http://localhost:8060/content/test

 七、RestTemplate和Feign对比

角度  RestTemplate  Feign
可读性、可维护性  一般 极佳
开发体验  欠佳 极佳
性能  很好  中等(RestTemplate的50%左右,但是可以使用连接池将性能提升15%所有)
灵活性  极佳  中等(内置功能可以满足绝大多数需求)

八、Feign的性能优化
1、使用连接池提升15%性能

pom.xml中添加依赖

 
        io.github.openfeign
        feign-httpclient
    

application.yml中添加属性配置连接池

  feign:
      httpclient:
        #让feign使用Apache httpclient做请求,而不是默认的urlconnection
        enabled: true
        #feign的最大连接数
        max-connections: 200
        #feign单个路径的最大连接数
        max-connections-per-route: 50

2、将日志的级别设置为basic,不要使用full

feign:
      client:
        config:
          #想要调用的微服务的名称或全局配置
          default:
            loggerLevel: basic

九、Feign的常见问题总结

参考:https://www.imooc.com/article/289005
十、pom.xml及源代码下载



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.5.RELEASE
         
    
    com.example
    user_center
    0.0.1-SNAPSHOT
    user_center
    user_center
    
        1.8
    
    
        
            org.springframework.boot
            spring-boot-starter-web
        

        
            org.springframework.boot
            spring-boot-starter-test
            test
        
        
            org.springframework.cloud
            spring-cloud-starter-alibaba-nacos-discovery
        
        
        
            org.projectlombok
            lombok
            1.18.12
        
        
            org.springframework.cloud
            spring-cloud-starter-openfeign
        
        
            io.github.openfeign
            feign-httpclient
        
    
    
        
            
            
                org.springframework.cloud
                spring-cloud-dependencies
                Greenwich.SR1
                pom
                import
            
            
            
                org.springframework.cloud
                spring-cloud-alibaba-dependencies
                0.9.0.RELEASE
                pom
                import
            
        
    
    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    


如此,我们便用feign实现微服务之间的调动,快行动起来吧。

你可能感兴趣的:(SpringCloud,java,spring,开发语言)