32 lines
752 B
YAML
32 lines
752 B
YAML
|
|
spring:
|
||
|
|
profiles:
|
||
|
|
active: dev
|
||
|
|
mvc:
|
||
|
|
pathmatch:
|
||
|
|
matching-strategy: ant_path_matcher
|
||
|
|
application:
|
||
|
|
name: agent-client
|
||
|
|
version: 1.0
|
||
|
|
web:
|
||
|
|
resources:
|
||
|
|
static-locations: classpath*:/META-INF/resources/
|
||
|
|
logging:
|
||
|
|
config: classpath:logback/logback-${spring.profiles.active}.xml
|
||
|
|
|
||
|
|
# springdoc-openapi项目配置
|
||
|
|
knife4j:
|
||
|
|
setting:
|
||
|
|
enable-footer-custom: true
|
||
|
|
footer-custom-content: Apache License 2.0 | Copyright © 2025-[]
|
||
|
|
springdoc:
|
||
|
|
config:
|
||
|
|
title: AGENTTCP服务
|
||
|
|
description: AGENTTCP服务接口文档
|
||
|
|
contact: AGENTTCP
|
||
|
|
email:
|
||
|
|
version: ${spring.application.version}
|
||
|
|
group-configs:
|
||
|
|
- group: 'AGENTTCP服务'
|
||
|
|
paths-to-match: '/**'
|
||
|
|
packages-to-scan: com.tongran.agent.client
|