一、前言
在分布式系统中,服务间通信是非常常见的情况。Feign是一个开源的Java HTTP客户端,可以帮助我们在SpringBoot应用中快速构建和使用HTTP客户端,方便实现服务间的通信。与其他HTTP客户端相比,Feign具有简化 HTTP API定义、支持多种HTTP请求方法、支持请求和响应的压缩、支持请求和响应的日志记录、支持多种负载均衡器、支持自定义拦截器和错误处理器等特点。
二、SpringBoot集成
1.添加依赖
org.springframework.cloud
spring-cloud-starter-openfeign
3.1.5
2.启用Feign客户端
我们需要在启动类上添加@EnableFeignClients注解,启用Feign客户端。
package com.example.nettydemo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;
@SpringBootApplication
@EnableFeignClients
public class NettyDemoApplication {
public static void main(String[] args) {
SpringApplication.run(NettyDemoApplication.class, args);
}
}
3.定义Feign客户端接口
@FeignClient注解里面的url指定需要请求的URL地址,name指定客户端的名称。
package com.example.nettydemo.feign;
import com.example.nettydemo.entity.User;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
/**
* @author qx
* @date 2023/12/28
* @des Feign客户端
*/
@FeignClient(url = "http://127.0.0.1:8090/user", name = "user")
public interface UserFeignClient {
@GetMapping("/{id}")
User selectUserById(@PathVariable("id") Long id);
}
4.定义目标控制层接口
package com.example.nettyd服务器托管网emo.controller;
import com.example.nettydemo.entity.User;
import com.example.nettydemo.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @author qx
* @date 2023/12/28
* @des
*/
@RestController
@RequestMapping("/user")
public class UserController {
@Autowired
private UserService userService;
@GetMapping("/{id}")
public User selectUserById(@PathVariable("id") Long id) {
return userService.getUserById(id);
}
}
5.创建Feign测试控制层
package com.example.nettydemo.controller;
import com.example.nettydemo.entity.User;
import com.example.nettydemo.feign.UserFeignClient;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annot服务器托管网ation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @author qx
* @date 2023/12/28
* @des Feign测试
*/
@RestController
@RequestMapping("/userFeign")
public class UserFeignController {
@Autowired
private UserFeignClient userFeignClient;
@GetMapping("/{id}")
public User getUserInfo(@PathVariable("id") Long id) {
return userFeignClient.selectUserById(id);
}
}
6.测试
我们先测试目标请求接口是否正确。
然后我们再使用Feign的方式请求接口的方式进行测试。
这样我们使用Feign方式请求,成功请求目的地址获取到了一样的数据。
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
相关推荐: Istio 网格的出口定义者:深入了解 Egress Gateway
本文分享自华为云社区《Istio Egress 出口网关使用》,作者:k8s技术圈。 前面我们了解了位于服务网格内部的应用应如何访问网格外部的 HTTP 和 HTTPS 服务,知道如何通过ServiceEntry对象配置 Istio 以受控的方式访问外部服务,…