gewuyou fc8bea06b3 feat(webmvc): Add method logging and configure Spring Boot AOP
- Added MethodRecording annotation to record method execution information
- Implement MethodRecordingAspect for method recording
- Add LoggerAutoConfiguration Automatic Configuration Class
- Introduce CoroutineLogger coroutine log object - Update dependencies and configure Spring Boot AOP
2025-04-26 23:47:02 +08:00

13 lines
306 B
Plaintext

extra {
// 需要SpringBootBom
setProperty(ProjectFlags.USE_SPRING_BOOT_BOM, true)
}
dependencies {
implementation(project(Modules.Core.EXTENSION))
implementation(libs.springBootStarter.aop)
implementation(libs.kotlinxCoroutines.reactor)
compileOnly(libs.springBootStarter.web)
}