SpringCloud 服务消费者(Feign)

43次阅读

共计 3992 个字符,预计需要花费 10 分钟才能阅读完成。

Feign 简介
Feign 是一个声明 web 服务客户端,这便得编写 web 服务客户端更容易,使用 Feign 创建一个接口并对它进行注解,它具有可插拔的注解支持包括 Feign 注解与 JAX-RS 注解,Feign 还支持可插拔的编码器与解码器,Spring Cloud 增加了对 Spring MVC 的注解。在 Spring Cloud 中使用 Feign, 我们可以做到使用 HTTP 请求远程服务时能与调用本地方法一样的编码体验。Feign 采用的是基于接口的注解,Feign 整合了 ribbon,具有负载均衡的能力。
准备工作
启动注册中心 eureka-server, 服务提供者 say-hello。对这两个项目各自启动两个实例。
创建 Feign 客户端
1. 新建一个 springboot 工程,取名为 service-feign
<?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.definesys</groupId>
<artifactId>my_cloud</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath/> <!– lookup parent from repository –>
</parent>

<groupId>com.definesys</groupId>
<artifactId>service-feign</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>service-feign</name>
<description>Demo project for Spring Boot</description>

<properties>
<java.version>1.8</java.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</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. 修改配置文件
server.port=4444

eureka.client.service-url.defaultZone=http://server2:11112/eureka/,http://server1:11111/eureka/

spring.application.name=service-feign
3. 修改启动类
@SpringBootApplication
@EnableEurekaClient
@EnableDiscoveryClient
@EnableFeignClients
public class ServiceFeignApplication {

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

}
4. 定义 Feign 接口通过 @ FeignClient(“服务名”),来指定调用哪个服务。
@FeignClient(value = “say-hello”)
public interface SayHelloFeignSer {
@RequestMapping(value = “/sayHello”,method = RequestMethod.GET)
String feignSayHelloSer(@RequestParam(value = “helloName”) String helloName);
}
5. 创建 controller,对外提供接口
@RestController
public class FeignServiceController {

// 编译器报错,无视。因为这个 Bean 是在程序启动的时候注入的,编译器感知不到,所以报错。
@Autowired
private SayHelloFeignSer sayHelloFeignSer;

@GetMapping(“/feignSayHello”)
public String feignSayHelloCtr(@RequestParam(“helloName”)String helloName){
return sayHelloFeignSer.feignSayHelloSer(helloName);

}
}
6. 启动 service-feign 访问 http://localhost:4444/feignSayHello?helloName=adaad,发现浏览器交替显示端口,说明 feign 已经集成 ribbon。
Feign 多参数请求
1. 修改 say-hello 项目,在 SayHelloController 中添加两个方法
/**
* get 请求多请求参数
* @param userName
* @param userPassword
* @return
*/
@RequestMapping(value = “/manyParams”,method = RequestMethod.GET)
public String manyParamsCtr(@RequestParam(“userName”)String userName,@RequestParam(“userPassword”)String userPassword){
return “ 用户名:”+userName+”, 用户密码 ”+userPassword;
}

/**
* post 对象参数
* @param user
* @return
*/
@RequestMapping(value = “/objParams”,method = RequestMethod.POST)
public User objParamsCtr(@RequestBody User user){
System.out.println(JSON.toJSON(user));
return user;
}
public class User {
private String userName;

private String userPassword;

private String userSex;

…get(),set()
}
2. 修改 service-feign 项目 Feign 接口
/**
* 多参数 get 请求
* @param userName
* @param userPassword
* @return
*/
@RequestMapping(value = “/manyParams”,method = RequestMethod.GET)
String manyParamsSer(@RequestParam(“userName”)String userName,@RequestParam(“userPassword”)String userPassword);

/**
* 对象参数 post 请求
* @param user
* @return
*/
@RequestMapping(value = “/objParams”,method = RequestMethod.POST)
Object objParamsCtr(@RequestBody Object user);
3. 修改 service-feign 项目 FeignServiceController
@GetMapping(“/feignManyParams”)
public String feignManyParamsCtr(@RequestParam(“userName”)String userName,@RequestParam(“userPassword”)String userPassword){
return sayHelloFeignSer.manyParamsSer(userName,userPassword);
}

@PostMapping(“/feignObjParam”)
public Object feignObjParamCtr(@RequestBody Map<String,Object> map){
return sayHelloFeignSer.objParamsCtr(map);
}
注:为了不重复创建 User 实体类,这里用 map 去接收参数。4. 重新启动 say-hello,service-feign 两个项目通过 postman 访问 /feignManyParams 接口访问 /feignObjParam 接口

正文完
 0