| 123456789101112131415161718192021222324 |
- server:
- port: 11000
- spring:
- application:
- name: sckw-ng-ai
- profiles:
- active: @profiles.active@
- main:
- allow-bean-definition-overriding: true
- allow-circular-references: true
- springdoc:
- # 开启 Swagger UI
- swagger-ui:
- enabled: true
- path: /swagger-ui.html # 访问地址
- # API 文档路径
- api-docs:
- enabled: true
- path: /v3/api-docs
- # 包扫描路径 (可选,通常自动扫描 @RestController)
- packages-to-scan: com.sckw.ai.biz
- # WebFlux 特有:如果使用了 ContextPath,需要配置
- # context-path: /api
|