1. 程式人生 > >spring-cloud(三)服務消費者(Feign)(Finchley版本)

spring-cloud(三)服務消費者(Feign)(Finchley版本)

Feign是一個宣告式的偽Http客戶端,它使得寫Http客戶端變得更簡單。使用Feign,只需要建立一個介面並註解。它具有可插拔的註解特性,可使用Feign 註解和JAX-RS註解。Feign支援可插拔的編碼器和解碼器。Feign預設集成了Ribbon,並和Eureka結合,預設實現了負載均衡的效果。

  • Feign 採用的是基於介面的註解
  • Feign 整合了ribbon,具有負載均衡的能力
  • 整合了Hystrix,具有熔斷的能力

啟動 eureka-server 埠8761  啟動eureka-client 埠8762  啟動eureka-client  埠8763

這樣eureka-client 在eureka-server中註冊了兩個例項 埠分別為8762 8763

新建服務消費者 feign-server
在主工程下新建module feign-server

在它的pom.xml繼承了父pom檔案,並引入了以下依賴
 

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.xuxu</groupId>
    <artifactId>feign-server</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>feign-server</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>com.xuxu</groupId>
        <artifactId>springcloud01</artifactId>
        <version>1.0-SNAPSHOT</version>
    </parent>

    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-openfeign</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
    </dependencies>
</project>

配置檔案application.yml如下

spring:
  application:
    name: feign-server
server:
  port: 8765
eureka:
  client:
    serviceUrl:
     defaultZone: http://localhost:8761/eureka/

啟動類上加入註解@EnableEurekaClient   @EnableDiscoveryClient   @EnableFeignClients開啟Feign的功能

@SpringBootApplication
@EnableEurekaClient
@EnableFeignClients
@EnableDiscoveryClient
public class FeignServerApplication {

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

定義一個feign介面,通過@ FeignClient(“服務名”),來指定呼叫哪個服務。

@FeignClient("eureka-client")
public interface Hello {
    @RequestMapping(value = "/hi",method = RequestMethod.GET)
    public String selectOneTohello(@RequestParam(value="name") String name);
}

在Web層的controller層,對外暴露一個"/hi"的API介面,通過上面定義的Feign客戶端hello來消費服務。程式碼如下:

@RestController
public class HelloController {
     //編譯器報錯,無視。 因為這個Bean是在程式啟動的時候注入的,編譯器感知不到,所以報錯。
    @Autowired
    Hello hello;

    @RequestMapping(value ="/hi")
    public String hello(@RequestParam("name") String name){
        return hello.selectOneTohello(name);
    }
}

啟動服務

檢視eureka-server中的例項