mirror of
https://github.moeyy.xyz/https://github.com/GeWuYou/forgeboot
synced 2025-10-28 03:48:52 +08:00
- Delete FeignTraceAutoConfiguration, WebClientTraceAutoConfiguration, and RequestIdTaskDecorator - Refactor TraceAutoConfiguration and use ContextFieldContributor to replace the original filters and interceptors - Remove the RequestIdUtil class and use StringContextHolder to replace thread local storage - Update TraceRequestIdProvider and use ContextFieldContributor to provide the request ID - Remove useless extension functions and filter classes
14 lines
603 B
Plaintext
14 lines
603 B
Plaintext
dependencies {
|
|
implementation(platform(libs.springBootDependencies.bom))
|
|
api(project(Modules.Core.EXTENSION))
|
|
api(project(Modules.Context.STARTER))
|
|
compileOnly(project(Modules.TRACE.API))
|
|
compileOnly(platform(libs.springCloudDependencies.bom))
|
|
compileOnly(libs.springBootStarter.webflux)
|
|
compileOnly(libs.springBootStarter.web)
|
|
// Spring Cloud OpenFeign (Compile Only)
|
|
// https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-openfeign
|
|
compileOnly(libs.springCloudStarter.openfeign)
|
|
kapt(libs.springBoot.configuration.processor)
|
|
}
|