Spring Cloud 之 声明式REST客户端 Feign组件

Feign是一个声明式的Web服务客户端。能很简单的调用其他服务的API。并且实现负载均衡。
本实例GitHub地址:https://github.com/MistraR/springCloudApplication

1、创建Feign模块

在前两篇文章的基础上继续改造工程。
Spring Cloud 之 服务注册与发现 Eureka组件
Spring Cloud 之 负载均衡 Ribbon组件
新建model:service-feign
pom.xml



    4.0.0

    com.server
    feign
    0.0.1-SNAPSHOT
    jar

    feign
    Demo project for Spring Boot

    
        com.cloud
        test
        1.0-SNAPSHOT
    

    
        UTF-8
        UTF-8
        1.8
        Finchley.RELEASE
    

    
        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-client
        
        
            org.springframework.cloud
            spring-cloud-starter-openfeign
        
    

    
        
            
                org.springframework.cloud
                spring-cloud-dependencies
                ${spring-cloud.version}
                pom
                import
            
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    

配置文件application.yml

eureka:
  client:
    serviceUrl:
      # 注明自己的服务注册中心的地址
      defaultZone: http://localhost:7777/eureka/
server:
  port: 8005
spring:
  application:
    name: service-feign

在应用主类上表明为eureka-client,向服务注册中心注册

@SpringBootApplication
@EnableEurekaClient
//注解开启Feign
@EnableFeignClients
public class FeignApplication {

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

}

创建调用接口FeignService

@Service
@FeignClient(value = "service-hello")
public interface FeignService {

    @RequestMapping(value = "/hi",method = RequestMethod.GET)
    String sayHiFromClientOne(@RequestParam(value = "name") String name);
}

@FeignClient(value = “service-hello”),value 指明要调用的服务名
Controller

@RestController
public class HiController {

    @Autowired
    FeignService feignService;

    @RequestMapping(value = "/hi", method = RequestMethod.GET)
    public String sayHi(@RequestParam String name) {
        return feignService.sayHiFromClientOne(name);
    }

}

2、测试

启动service-feign
可以再服务注册中心看到实例:
Spring Cloud 之 声明式REST客户端 Feign组件_第1张图片
浏览器多次访问:http://localhost:8005/hi?name=mistra,会交替出现

  • hi mistra,i am from port:8002
  • hi mistra,i am from port:8003

service-feign远程调用了eureka-client的服务,并且实现了负载均衡。

###源码

3、FeignClient工作原理

程序启动时会检查SpringBoot启动类是否有@EnableFeignClient注解,如果有,则开启包扫描,扫描被@FeignClient注解的接口,把接口名和注解信息赋给BeanDefinitionBuilder,然后根据BeanDefinitionBuilder得到BeanDefinition,最后将BeanDefinition注入到Ioc容器中。通过JDK代理,当调用@FeignClient注解接口里的方法时,该方法会被拦截。在SynchronousMethodHandler类进行拦截处理,会根据参数生成RequestTenplate对象,该对象是Http请求模板。Request对象交给Client处理,网络请求框架可以使HttpURLConnection、HttpClient和OkHttp,最后执行Http请求来获取响应。最后的Client被封装到了LoadBalancerClient类,这个类结核Ribbon做到了负载均衡。
Ribbon负载均衡上一篇又说道:Spring Cloud 之 负载均衡 Ribbon组件

本实例GitHub地址:https://github.com/MistraR/springCloudApplication

我的:

  • >>>>>>>CSDN<<<<<<<
  • >>>>>>>GitHub<<<<<<<
  • >>>>>>>个人博客<<<<<<<

Spring Cloud 之 声明式REST客户端 Feign组件_第2张图片

你可能感兴趣的:(SpringCloud)