一塊兒來學Spring Cloud | 第四章:服務消費者 ( Feign ) 一塊兒來學Spring Cloud | 第二章:服務註冊和發現組件 (Eureka)

上一章節,講解了SpringCloud如何經過RestTemplate+Ribbon去負載均衡消費服務,本章主要講述如何經過Feign去消費服務。html

1、Feign 簡介:java

Feign是一個便利的rest框架,在Ribbon的基礎上進行了一次改進,採用接口的方式,將須要調用的其餘服務的方法定義成抽象方法,不須要本身構建http請求,簡化了調用。可是最後的原理仍是經過ribbon在註冊服務器中找到服務實例,而後對請求進行分配。web

在工做中,咱們基本上都是使用Feign來進行服務調用,由於Feign使用起來就像是調用自身本地的方法同樣,而感受不到是調用遠程方法,至關舒服,它主要有3個優勢。spring

  • 1. feign自己裏面就包含有了ribbon,具備負載均衡的能力
  • 2. fegin是一個採用基於接口的註解的編程方式,更加簡便
  • 3. fegin整合了Hystrix,具備熔斷的能力

2、 準備工做:apache

1. 啓動eureka-server 工程,eureka註冊中心就啓動了。編程

2. 啓動springcloud-eureka-client工程,springcloud-eureka-client工程的端口爲9300。服務器

3. 將springcloud-eureka-client工程的application.properties文件中端口改爲9400,而後再啓動springcloud-eureka-client。app

經過上面步驟,咱們就啓動了端口9300,9400兩個同樣的springcloud-eureka-client服務模塊(爲了測試feign的負載均衡能力)。負載均衡

3、新建一個feign服務:框架

1. 新建一個spring-boot工程,取名爲springcloud-feign-client,修改pox文件以下:

<parent>標籤就是引入咱們第一章節新建的父工程的pom.xml文件,具體可參考:一塊兒來學Spring Cloud | 第一章 :如何搭建一個多模塊的springcloud項目

<?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>

	<parent>
		<groupId>com.haly</groupId>
		<artifactId>springcloud</artifactId>
		<version>0.0.1-SNAPSHOT</version>
	</parent>

	<groupId>com.haly</groupId>
	<artifactId>springcloud-feign-client</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<name>springcloud-ribbon-client</name>
	<description>新建一個springcloud項目</description>

	<dependencies>
		<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>
           <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-openfeign</artifactId>
        </dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</build>


</project>

 2. 修改application.properties文件以下

server.port=9600
spring.application.name=springcloud-feign-client
eureka.client.serviceUrl.defaultZone=http://localhost:8761/eureka/

3. 模塊啓動類須要增長註解@EnableFeignClients,表示開啓Feign的功能

package com.haly;

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
@EnableFeignClients
@EnableDiscoveryClient
public class SpringcloudFeignClientApplication {

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

}

4. 定義一個feign接口,經過@FeignClient(「服務名」),來指定調用哪一個服務。本章案例中調用了springcloud-eureka-client服務的「/hello」接口

springcloud-eureka-client模塊中的hello接口,具體實現能夠參考:一塊兒來學Spring Cloud | 第二章:服務註冊和發現組件 (Eureka)

ps:抽象方法的註解、方法名、參數要和服務提供方保持一致(這裏是與springcloud-eureka-client模塊中的 /hello方法保持一致)

package com.haly.romote;

import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;

@FeignClient(value = "springcloud-eureka-client")
public interface FeignRemoteService {

    @RequestMapping(value = "/hello",method = RequestMethod.GET)
    public String hello(@RequestParam(value = "name") String name);
    
}

5. controller層,對外暴露一個"/getHello"的API接口,給頁面測試,經過上面定義的Feign客戶端FeignRemoteService來消費服務。代碼以下:

package com.haly.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

import com.haly.romote.FeignRemoteService;


@RestController
public class FeignController {
	
    @Autowired
    FeignRemoteService feignRemoteService;

    @GetMapping(value = "/getHello")
    public String getHello(@RequestParam String name) {
        return feignRemoteService.hello(name);
    }

}

 6. 啓動各個服務模塊,服務註冊結果以下

 訪問地址 http://localhost:9600/getHello?name=young碼農  , 屢次輪流訪問頁面,出現9300,9400服務接口返回結果,證實feign是整合了負載均衡功能

4、總結:

加上本章節代碼後,代碼目錄結構:

相關文章
相關標籤/搜索