refactor(web): 移除 SpringDoc 全局响应处理器及相关依赖

- 删除 ApiDocGlobalResponseHandler 类及其相关配置
- 移除对 continew-starter-api-doc 模块的依赖
- 替换为 swagger-annotations-jakarta 依赖
- 清理 GlobalResponseAutoConfiguration 中的条件加载逻辑
- 更新 pom.xml 中的注释说明
This commit is contained in:
吴泽威
2025-10-20 16:06:45 +08:00
parent a60d452aee
commit f1937d3968
3 changed files with 3 additions and 89 deletions

View File

@@ -22,11 +22,10 @@
<artifactId>continew-starter-json-jackson</artifactId>
</dependency>
<!-- API 文档模块 -->
<!-- Swagger 注解 -->
<dependency>
<groupId>top.continew.starter</groupId>
<artifactId>continew-starter-api-doc</artifactId>
<optional>true</optional>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations-jakarta</artifactId>
</dependency>
<!-- Spring Boot Web提供 Spring MVC Web 开发能力,默认内置 Tomcat 服务器) -->