真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

什么是feign

這篇文章主要講解了“什么是feign”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“什么是feign”吧!

東陽網(wǎng)站建設(shè)公司成都創(chuàng)新互聯(lián)公司,東陽網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為東陽1000多家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站建設(shè)要多少錢,請找那個售后服務(wù)好的東陽做網(wǎng)站的公司定做!

一、Feign簡介

Feign是一個聲明式的偽Http客戶端,它使得寫Http客戶端變得更簡單。使用Feign,只需要創(chuàng)建一個接口并注解。它具有可插拔的注解特性,可使用Feign 注解和JAX-RS注解。Feign支持可插拔的編碼器和解碼器。Feign默認(rèn)集成了Ribbon,并和Eureka結(jié)合,默認(rèn)實現(xiàn)了負(fù)載均衡的效果。

簡而言之:

  • Feign 采用的是基于接口的注解

  • Feign 整合了ribbon

二、準(zhǔn)備工作

繼續(xù)用上一節(jié)的工程, 啟動eureka-server,端口為8761; 啟動service-hi 兩次,端口分別為8762 、8773.

三、創(chuàng)建一個feign的服務(wù)

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



	4.0.0
	
		org.springframework.boot
		spring-boot-starter-parent
		2.1.8.RELEASE
		 
	
	com.free
	serice-feign
	0.0.1-SNAPSHOT
	serice-feign
	Demo project for Spring Boot

	
		1.8
		Greenwich.SR3
	

	
		
			org.springframework.boot
			spring-boot-starter-web
		
		
			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
			
		
	

在工程的配置文件application.yml文件,指定程序名為service-feign,端口號為8765,服務(wù)注冊地址為http://localhost:8761/eureka/ ,代碼如下:

server:
  port: 8765

spring:
  application:
    name: service-feign

eureka:
  client:
    serviceUrl:
      defaultZone: http://localhost:8761/eureka/

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

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.openfeign.EnableFeignClients;

@SpringBootApplication
@EnableDiscoveryClient
@EnableFeignClients
public class SericeFeignApplication {

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

	}

}

定義一個feign接口,通過@ FeignClient(“服務(wù)名”),來指定調(diào)用哪個服務(wù)。比如在代碼中調(diào)用了service-hi服務(wù)的“/hi”接口,代碼如下:

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

在Web層的controller層,對外暴露一個”/hi”的API接口,通過上面定義的Feign客戶端SchedualServiceHi 來消費服務(wù)。代碼如下:

@RestController
public class HiController {

    @Autowired
    SchedualServiceHi schedualServiceHi;

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

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

hi zz,i am from port:8762

hi zz,i am from port:8763

Feign源碼解析:http://blog.csdn.net/forezp/article/details/73480304

本文源碼下載: https://gitee.com/freesystem/SpringCloudDemo/tree/master/serice-feign

感謝各位的閱讀,以上就是“什么是feign”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對什么是feign這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!


本文題目:什么是feign
網(wǎng)頁鏈接:http://weahome.cn/article/ghdsci.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部