學(xué)習(xí)完上一章的同學(xué)會(huì)有疑問犯戏,做為消費(fèi)者要如何調(diào)用服務(wù)送火,上一章雖然以實(shí)現(xiàn)此功能,顯然這不是我們想要的解決方法先匪,接下來种吸,在這里給大家介紹一種通過注解的方式來解決。
Spring Cloud Feign
Spring Cloud Feign是一套基于Netflix Feign實(shí)現(xiàn)的聲明式服務(wù)調(diào)用客戶端呀非。它使得編寫Web服務(wù)客戶端變得更加簡(jiǎn)單坚俗。我們只需要通過創(chuàng)建接口并用注解來配置它既可完成對(duì)Web服務(wù)接口的綁定。它具備可插拔的注解支持岸裙,包括Feign注解猖败、JAX-RS注解。它也支持可插拔的編碼器和解碼器降允。Spring Cloud Feign還擴(kuò)展了對(duì)Spring MVC注解的支持恩闻,同時(shí)還整合了Ribbon和Eureka來提供均衡負(fù)載的HTTP客戶端實(shí)現(xiàn)。
下面剧董,我們通過一個(gè)例子來展現(xiàn)Feign如何方便的聲明對(duì)eureka-client服務(wù)的定義和調(diào)用幢尚。
下面的例子,我們將利用之前構(gòu)建的eureka-server作為服務(wù)注冊(cè)中心翅楼、eureka-client作為服務(wù)提供者作為基礎(chǔ)(http://www.reibang.com/p/4a68c05bcb84)這里介紹了服務(wù)注冊(cè)中心尉剩、服務(wù)提供者、消費(fèi)者的構(gòu)建方式毅臊。而基于Spring Cloud Ribbon實(shí)現(xiàn)的消費(fèi)者理茎,我們可以根據(jù)eureka-consumer實(shí)現(xiàn)的內(nèi)容進(jìn)行簡(jiǎn)單改在就能完成,具體步驟如下褂微。
添加依賴:
<dependencies>
...
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-feign</artifactId>
</dependency>
</dependencies>
修改應(yīng)用主類功蜓。通過@EnableFeignClients注解開啟掃描Spring Cloud Feign客戶端的功能:
package chanzj.eurekaconsumerfeign;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.feign.EnableFeignClients;
@EnableFeignClients
@EnableDiscoveryClient
@SpringBootApplication
public class EurekaConsumerFeignApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaConsumerFeignApplication.class, args);
}
}
創(chuàng)建一個(gè)Feign的客戶端接口定義。使用@FeignClient注解來指定這個(gè)接口所要調(diào)用的服務(wù)名稱宠蚂,接口中定義的各個(gè)函數(shù)使用Spring MVC的注解就可以來綁定服務(wù)提供方的REST接口:
package chanzj.eurekaconsumerfeign.service;
import org.springframework.cloud.netflix.feign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
@FeignClient("eureka-client")
public interface DcClient {
@GetMapping("/test")
String test();
}
修改Controller式撼。通過定義的feign客戶端來調(diào)用服務(wù)提供方的接口:
package chanzj.eurekaconsumerfeign.web;
import chanzj.eurekaconsumerfeign.service.DcClient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class DcController {
@Autowired
DcClient dcClient;
@GetMapping("/test")
public String test(){
return dcClient.test();
}
}
通過Spring Cloud Feign來實(shí)現(xiàn)服務(wù)調(diào)用的方式更加簡(jiǎn)單了,通過@FeignClient定義的接口來統(tǒng)一的生命我們需要依賴的微服務(wù)接口求厕。而在具體使用的時(shí)候就跟調(diào)用本地方法一點(diǎn)的進(jìn)行調(diào)用即可著隆。由于Feign是基于Ribbon實(shí)現(xiàn)的扰楼,所以它自帶了客戶端負(fù)載均衡功能,也可以通過Ribbon的IRule進(jìn)行策略擴(kuò)展美浦。
application.properties配置文件:
spring.application.name=eureka-consumer
server.port=2103
eureka.client.serviceUrl.defaultZone=http://localhost:1002/eureka/
啟動(dòng)項(xiàng)目
訪問http://localhost:2103/test
成功弦赖!
補(bǔ):當(dāng)然我們這里還有一個(gè)通過訪問url的方式,是利用Ribbon(不常用)浦辨,有興趣的朋友可以了解一下蹬竖。