1 概述
1.1 介紹
電子商務平臺原始碼請加企鵝求求:一零三八七七四六二六。Feign是一個宣告式WebService客戶端,使用方法時定義一個介面並在上面新增註解即可。Feign支援可拔插式的編碼器和解碼器。Spring Cloud對Feign進行了封裝,使其支援SpringMVC和HttpMessageConverters。Feign可以與Eureka和Ribbon組合使用以支援負載均衡。
1.2 由來
大部分時間我們都能接受ribbon這種直接呼叫微服務的方式來獲取服務:
private static final String REST_URL_PREFIX = "http://MICROSERVICE-DEPT/";
複製程式碼
大家都習慣面向介面程式設計,比如WebServive,Dao,為了適應廣大社群人員提出的面向介面程式設計原則出現了Feign:
微服務名字獲取呼叫地址。
通過介面加註解獲取所需服務。
2 案例
2.1 新建consumer feign服務
- 匯入pom.xml
<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>
</dependencies>
複製程式碼
2.編寫配置檔案
server:
port: 80
eureka:
client:
service-url:
defaultZone: http://eureka7001.com:7001/eureka/,http://eureka7002.com:7002/eureka/,http://eureka7003.com:7003/eureka/
register-with-eureka: false #作為消費者不提供服務,不應該註冊自己
複製程式碼
3.建立Feign遠端呼叫介面
@FeignClient(name= "spring-cloud-provider")
public interface HelloRemote {
/**
* 該抽象方法的註解、訪問路徑、方法簽名要和提供服務的方法完全一致
* @param name
* @return
*/
@RequestMapping(value = "/hello/{name}")
String hello(@RequestParam(value = "name") String name);
}
複製程式碼
4.編寫controller
@RestController
public class ConsumerController {
@Autowired
HelloRemote HelloRemote;
@RequestMapping("/hello/{name}")
public String index(@PathVariable("name") String name) {
return HelloRemote.hello(name);
}
}
複製程式碼
5.編寫主啟動類
@SpringBootApplication
@EnableEurekaClient
@EnableFeignClients
public class SpringCloudConsumerFeignApplication80 {
public static void main(String[] args) {
SpringApplication.run(SpringCloudConsumerFeignApplication80.class, args);
}
}
複製程式碼
依次啟動uereka、provider、consumer feign服務測試。
測試結果證明Feign預設使用輪訓負載均衡演算法
注意:spring-cloud-starter-feign 裡面已經包含了 spring-cloud-starter-ribbon(Feign 中也使用了 Ribbon)