2025-09-28 09:54:54 +08:00
|
|
|
# 服务器配置
|
|
|
|
server:
|
2025-09-29 16:52:56 +08:00
|
|
|
port: 19290
|
|
|
|
# servlet:
|
|
|
|
# context-path: /parser
|
2025-09-28 09:54:54 +08:00
|
|
|
|
|
|
|
# 通用 log 输出配置
|
|
|
|
logging:
|
|
|
|
config: classpath:logback-spring.xml
|
|
|
|
|
|
|
|
# Spring Boot 应用配置
|
|
|
|
spring:
|
|
|
|
# 启用JAVA21虚拟线程
|
|
|
|
threads:
|
|
|
|
virtual:
|
|
|
|
enabled: true
|
|
|
|
|
|
|
|
# 文件上传配置
|
|
|
|
servlet:
|
|
|
|
multipart:
|
|
|
|
max-file-size: 10MB
|
|
|
|
max-request-size: 10MB
|
|
|
|
profiles:
|
2025-09-29 16:52:56 +08:00
|
|
|
# active: orm,h2,sqlite,springdoc
|
|
|
|
# active: ${spring.profiles.group.dev}
|
2025-09-28 09:54:54 +08:00
|
|
|
active: dev
|
|
|
|
group:
|
2025-09-29 14:58:32 +08:00
|
|
|
dev: orm,h2,sqlite,springdoc
|
|
|
|
prod: orm,h2,sqlite
|