1. 程式人生 > >Spring Cloud之路:(四) 服務消費者(Feign)

Spring Cloud之路:(四) 服務消費者(Feign)

一、Feign簡介

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

簡而言之:
- Feign 採用的是基於介面的註解
- Feign 整合了ribbon

二、準備工作

繼續用上一節的工程, 啟動eureka-server,埠為8761; 啟動eureka-client 兩次,埠分別為8762 、8773.

三、建立一個feign的服務

1、建立服務

新建一個spring-boot工程,取名為serice-feign,在它的pom檔案引入Feign的起步依賴spring-cloud-starter-feign、Eureka的起步依賴spring-cloud-starter-eureka、Web的起步依賴spring-boot-starter-web,程式碼如下:

<dependencies>
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId
>
spring-cloud-starter-eureka</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-feign</artifactId> </dependency> <dependency> <groupId>
org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies>

2、配置檔案

在工程的配置檔案application.properties檔案,指定程式名為service-feign,埠號為8765,服務註冊地址為http://localhost:8761/eureka/ ,程式碼如下:

server.port = 8765

eureka.instance.hostname = localhost
eureka.client.service-url.default-zone=http://localhost:8761/eureka/

spring.application.name=service-feign

3、程式的啟動類

在程式的啟動類ServiceFeignApplication ,加上@EnableFeignClients註解開啟Feign的功能:

@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients
public class ServiceFeignApplication {

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

4、介面類

定義一個feign介面,通過@ FeignClient(“服務名”),來指定呼叫哪個服務。比如在程式碼中呼叫了EUREKACLIENT服務的“/hi”介面,程式碼如下:

@FeignClient(value = "EUREKACLIENT")
public interface SchedualServiceHi {
    @RequestMapping(value = "/hi",method = RequestMethod.GET)
    String sayHiFromClientOne(@RequestParam(value = "name") String name);
}

5、控制類

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

@RestController
public class HiController {

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

6、結果

啟動程式,多次訪問http://localhost:8765/hi?name=forezp,瀏覽器交替顯示:

hi forezp,i am from port:8762

hi forezp,i am from port:8763

附錄

史上最簡單的SpringCloud教程 | 第三篇: 服務消費者(Feign)

示例程式碼-github