mirror of
https://github.moeyy.xyz/https://github.com/GeWuYou/forgeboot
synced 2025-10-27 20:14:25 +08:00
- Implement RequestIdUtil tool class generation and storage request ID - Add TraceAutoConfiguration Automatic Configuration Class - Implementing RequestIdFilter and ReactiveRequestIdFilterRequestIdInterceptor interceptor support Feign clients -Filter - Add Feign to implement WebClientRequestIdFilter to support WebClient - Add RequestIdTaskDecorator Decorator to support asynchronous thread pooling - Added Request extension function to determine whether requests are skipped
13 lines
500 B
Plaintext
13 lines
500 B
Plaintext
dependencies {
|
|
implementation(project(Modules.Core.EXTENSION))
|
|
// Spring Cloud OpenFeign (Compile Only)
|
|
// https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-openfeign
|
|
compileOnly(libs.springCloudStarter.openfeign)
|
|
// Reactor Core (Compile Only)
|
|
// https://mvnrepository.com/artifact/io.projectreactor/reactor-core
|
|
compileOnly(libs.reactor.core)
|
|
|
|
compileOnly(libs.springBootStarter.web)
|
|
compileOnly(libs.springBootStarter.webflux)
|
|
}
|