上一篇文章,讲述了如何通过RestTemplate+Ribbon去消费服务,这篇文章主要讲述如何通过Feign去消费服务。
一、Feign简介
Feign是一个声明式的伪Http客户端,它使得写Http客户端变得更简单。使用Feign,只需要创建一个接口并注解。它具有可插拔的注解特性,可使用Feign 注解和JAX-RS注解。Feign支持可插拔的编码器和解码器。Feign默认集成了Ribbon,并和Nacos结合,默认实现了负载均衡的效果。
简而言之:
- Feign 采用的是基于接口的注解
- Feign 整合了ribbon,具有负载均衡的能力
二、准备工作
继续用上一节的nacos-provider工程,端口8762项目
三、创建一个feign的客户端
新建一个spring-boot工程,取名为nacos-consumer,在它的pom文件引入Feign的起步依赖spring-cloud-starter-openfeign、Nacos的起步依赖spring-cloud-starter-alibaba-nacos-discovery、Web的起步依赖spring-boot-starter-web,代码如下:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</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>
<version>3.0.5</version>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
<version>2021.1</version>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-loadbalancer</artifactId>
</dependency>
</dependencies>
在工程的配置文件application.properties文件,指定程序名为nacos-consumer,端口号为8763,服务注册地址为127.0.0.1:8848 ,代码如下:
server.port=8763
spring.application.name=nacos-consumer
spring.cloud.nacos.discovery.server-addr=127.0.0.1:8848
在程序的启动类NacosConsumerApplication,加上@EnableFeignClients注解开启Feign的功能:
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;
@SpringBootApplication
@EnableFeignClients
public class NacosConsumerApplication {
public static void main(String[] args) {
SpringApplication.run(NacosConsumerApplication.class, args);
}
}
定义一个feign接口,通过@ FeignClient(“服务名”),来指定调用哪个服务。比如在代码中调用了nacos-provider服务的“/hi”接口,代码如下:
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("nacos-provider")
public interface ConsumerHi {
@RequestMapping(value = "/hi",method = RequestMethod.GET)
String sayHiFromConsumer(@RequestParam(value = "name") String name);
}
在Web层的controller层,对外暴露一个"/hi"的API接口,通过上面定义的Feign客户端SchedualServiceHi 来消费服务。代码如下:
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;
@RestController
public class HiController {
//编译器报错,无视。 因为这个Bean是在程序启动的时候注入的,编译器感知不到,所以报错。
@Autowired
ConsumerHi consumerHi;
@GetMapping(value = "/hi-feign")
public String sayHi(@RequestParam String name) {
return consumerHi.sayHiFromConsumer( name );
}
}
启动程序,多次访问http://localhost:8763/hi?name=来自客户端的消息,浏览器交替显示:
服务端1提供消息,传过来的name= 来自客户端的消息
服务端2提供消息,传过来的name= 来自客户端的消息
本章节代码地址:SpringCloud2021: 基于nacos的SpringCloud学习代码
|