springcloud-服务调用篇(feign)

一、场景描述

我们可以通过ribbon来实现服务间的调用,但是当服务很多的时候调用方法写起来比较麻烦,而且也不容易管理。feign整合了ribbon,以接口的方式来调用服务,更加的方便

二、feign实现

  1. Idea-->file-->new-->project-->spring initializr-->next-->修改必要信息-->next
  2. 分别选择Cloud Routing-->Feign还有Cloud Discovery-->Eureka Discovery
  3. 点击next-->finish
  4. 我们查看生成项目里面的pom文件内容如下:


    4.0.0

    com.example
    eurekafeign
    0.0.1-SNAPSHOT
    jar

    eurekafeign
    Demo project for Spring Boot

    
        org.springframework.boot
        spring-boot-starter-parent
        2.0.4.RELEASE
         
    

    
        UTF-8
        UTF-8
        1.8
        Finchley.SR1
    

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

        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

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

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



  1. 我们可以看到其中两个重要的依赖,我们再现有项目添加feign调用功能的时候只需要把下面两个依赖添加即可

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


    org.springframework.cloud
    spring-cloud-starter-openfeign

  1. 在我们的启动类中添加@EnableFeignClients。用于启用feign组建
  2. 在application.properties文件中添加eureka的配置,使注册中心可用。配置请参照注册中心实战篇,内容如下:
spring.application.name=eurekafeign
server.port=8084
eureka.client.serviceUrl.defaultZone=http://eureka1:8001/eureka/ ,http://eureka1:8002/eureka/,http://eureka1:8003/eureka/
  1. 我们做一个简单的调用实例代码如下:
    ==DemoServiceInterface== 这是核心内容,是Feign的Client接口,
    @FeignClient("DEMO")指定我们这个接口会使用eureka注册中心的DEMO服务中的服务
    @RequestMapping("/hello")表示我们调用DEMO服务中的hello服务
package com.example.eurekafeign;

import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.RequestMapping;

@Component
@FeignClient("DEMO")
public interface DemoServiceInterface {
    @RequestMapping("/hello")
    String hello();
}


  1. 在我们需要调用demo的hello服务的地方注入DemoServiceInterface,直接调用hello方法即可完成调用。
package com.example.eurekafeign;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

import javax.annotation.Resource;

@RestController
public class HelloWord {
    @Resource
    private DemoServiceInterface demoServiceInterface;
    @RequestMapping(value="hello")
    @ResponseBody
    public String helloWord(){
        return  demoServiceInterface.hello();
    }



}

++敲黑板++

feign内部集成了Ribbon所以通过serviceid找到服务后,会通过ribbon自动实现服务访问的负载均衡,可以通过定义ribbon的负载均衡方法来实现自己想要的
在接口的方法前面需要定义该方法访问路径和访问方法和编码格式等信息
对于请求参数也可以通过@requestBody或者@RequestParameter的value方法进行设置,这里就使用和入参名同名的参数设定

参考文档:https://www.jianshu.com/p/270f3cd658f1

你可能感兴趣的:(springcloud-服务调用篇(feign))