mirror of
https://github.moeyy.xyz/https://github.com/GeWuYou/forgeboot
synced 2025-10-27 19:12:10 +08:00
- Added FieldDef class to define field properties - Create Scope enumeration class, define the context storage location - Implement AbstractContext and Context interfaces - Add the ContextFieldContributor interface and the FieldRegistry interface - Implement context processors: HeaderProcessor, GeneratorProcessor, MdcProcessor, ReactorProcessor - Add context filters: ContextServletFilter, ContextWebFilter - Implement the automatic configuration class ForgeContextAutoConfiguration - Add StringContextHolder - Implement the default field registry DefaultFieldRegistry
9 lines
268 B
Plaintext
9 lines
268 B
Plaintext
|
|
dependencies {
|
|
compileOnly(project(Modules.Context.API))
|
|
compileOnly(libs.springBootStarter.web)
|
|
compileOnly(libs.springBootStarter.webflux)
|
|
implementation(platform(libs.springBootDependencies.bom))
|
|
implementation(libs.springBoot.autoconfigure)
|
|
}
|