af44c23f21
- 移除旧的测试套件和UAT测试文件 - 更新密码编码器配置使用BCrypt strength=12 - 添加用户角色关联表和相关服务 - 优化前端日期显示格式 - 清理无用资源和配置文件 - 增强测试数据管理和清理功能
54 lines
1.1 KiB
YAML
54 lines
1.1 KiB
YAML
server:
|
|
port: 8084
|
|
|
|
spring:
|
|
application:
|
|
name: manage-app
|
|
r2dbc:
|
|
url: r2dbc:postgresql://${DB_HOST:localhost}:${DB_PORT:55432}/${DB_NAME:manage_system}
|
|
username: ${DB_USERNAME:postgres}
|
|
password: ${DB_PASSWORD:postgres}
|
|
pool:
|
|
initial-size: 10
|
|
max-size: 50
|
|
max-idle-time: 30m
|
|
max-life-time: 1h
|
|
acquire-timeout: 5s
|
|
security:
|
|
user:
|
|
name: disabled
|
|
password: disabled
|
|
|
|
management:
|
|
endpoints:
|
|
web:
|
|
exposure:
|
|
include: health,info,metrics,env,loggers
|
|
base-path: /actuator
|
|
endpoint:
|
|
health:
|
|
show-details: always
|
|
metrics:
|
|
tags:
|
|
application: ${spring.application.name}
|
|
environment: ${spring.profiles.active}
|
|
|
|
logging:
|
|
level:
|
|
cn.novalon.manage: DEBUG
|
|
org.springframework.r2dbc: DEBUG
|
|
cn.novalon.manage.db: DEBUG
|
|
|
|
springdoc:
|
|
api-docs:
|
|
path: /api-docs
|
|
enabled: true
|
|
swagger-ui:
|
|
path: /swagger-ui.html
|
|
enabled: true
|
|
tags-sorter: alpha
|
|
operations-sorter: alpha
|
|
show-actuator: false
|
|
default-consumes-media-type: application/json
|
|
default-produces-media-type: application/json
|