refactor(schedule): 重构任务调度模块,使用 OpenFeign 替代 WebClient

This commit is contained in:
2025-03-28 23:07:52 +08:00
parent 3408e4d01c
commit c041496f65
16 changed files with 276 additions and 306 deletions

View File

@@ -25,15 +25,10 @@
<artifactId>snail-job-client-job-core</artifactId>
</dependency>
<!-- Spring WebFlux异步非阻塞 Web 框架 -->
<!-- OpenFeign一种基于 Spring Cloud 的声明式 REST 客户端,它简化了与 HTTP 服务交互的过程 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webflux</artifactId>
</dependency>
<dependency>
<groupId>io.projectreactor.netty</groupId>
<artifactId>reactor-netty-http</artifactId>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
</dependency>
</dependencies>
</project>