目录
- 一、简介
- 1.定义
- 2.关键特征
- 二、Maven依赖
- 三、编写代码
- 1.DemoController.java
- 2.DemoFeignClient.java
- 3.启动类注解 @EnableFeignClients
- 四、测试
一、简介
1.定义
OpenFeign
:是由 Netflix 开发的声明式的 Web 服务客户端。它简化了向 RESTful Web 服务发送 HTTP 请求的过程,开发人员可以通过定义接口来指定所需的端点和请求/响应的格式。OpenFeign 根据这些接口定义自动生成 HTTP 客户端代码,抽象了处理 HTTP 通信的底层细节。
2.关键特征
OpenFeign 的一些关键特征包括:
1)声明式注解
:OpenFeign 使用注解,如 @FeignClient
、@RequestMapping
和 @RequestParam
来定义所需的 API 端点和参数。
2)与 Spring Boot 集成
:OpenFeign 与 Spring Boot 应用程序无缝集成,可以轻松将 Web 服务客户端融入到现有项目中。
3)负载均衡和容错处理
:OpenFeign 与 Ribbon
等负载均衡器集成,并通过 Hystrix
等断路器提供容错处理功能。
4)支持序列化和反序列化
:OpenFeign 根据指定的内容自动将 Java 对象序列化为 JSON、XML 或其他格式,并进行反序列化。
总的来说,OpenFeign 是一个方便易用的 HTTP 客户端框架,通过它客户快速构建出与 RESTful 服务端交互的客户端代码。
二、Maven依赖
<!-- OpenFeign -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
<version>2.2.2.RELEASE</version>
</dependency>
<!-- Jackson -->
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.9.13</version>
</dependency>
我们可以从 Maven 的依赖树中看到,spring-cloud-starter-openfeign
中集成了 Ribbon 和 Hystrix 依赖。
注意:从 Spring Cloud 2020.0.0 版本开始,spring-cloud-starter-openfeign 不再包含 Ribbon 和 Hystrix。
-
替代
Hystrix
的方案是使用Spring Cloud Circuit Breaker
来实现断路器的功能。Spring Cloud Circuit Breaker是一个抽象层,可以灵活地选择和切换不同的断路器实现,比如Resilience4j、Sentinel等。
-
替代
Ribbon
的方案是使用Spring Cloud LoadBalancer
来实现负载均衡器的功能。Spring Cloud LoadBalancer是Spring Cloud提供的一个负载均衡器,与服务发现组件(如Eureka、Consul等)无缝集成,能够动态地将请求转发到可用的服务实例上。
三、编写代码
1.DemoController.java
@RestController
@RequestMapping("/demo")
public class DemoController {
@Value("${server.port:}")
private String port;
@Autowired
private DemoFeignClient demoFeignClient;
@GetMapping("/test")
public Result<Object> test() {
String data = "This is a test! port:" + port;
return Result.succeed().setData(data);
}
@GetMapping("/feignTest")
public Result<Object> feignTest() {
return demoFeignClient.test();
}
}
2.DemoFeignClient.java
@FeignClient(value = "springboot-feign")
public interface DemoFeignClient {
@GetMapping("/demo/test")
Result<Object> test();
}
3.启动类注解 @EnableFeignClients
@EnableFeignClients
@EnableEurekaClient
@SpringBootApplication
public class SpringbootDemoApplication {
public static void main(String[] args) {
SpringApplication.run(SpringbootDemoApplication.class, args);
}
}
四、测试
直接访问地址:http://localhost:8081/demo/test
feign访问地址:http://localhost:8081/demo/feignTest
代码参考地址: https://gitee.com/acgkaka/SpringBootExamples/tree/master/springboot-feign
整理完毕,完结撒花~ 🌻
参考地址:
1.springBoot集成feign,https://blog.csdn.net/m0_67402341/article/details/124041789