Files
WAI_Project_BACKEND/target/classes/application-prod.yml

27 lines
581 B
YAML
Raw Normal View History

2025-11-24 22:01:29 +08:00
spring:
datasource:
2025-11-27 19:06:55 +08:00
url: jdbc:mysql://192.168.100.128:3306/cool?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2b8
2025-11-24 22:01:29 +08:00
username: root
2025-11-27 19:06:55 +08:00
password: mysql_root
2025-11-24 22:01:29 +08:00
driver-class-name: com.mysql.cj.jdbc.Driver
# AutoTable配置根据实体类自动生成表
auto-table:
# 启用自动维护表功能
enable: false
# Cool相关配置
cool:
# 初始化数据
initData: false
# 文档
springdoc:
api-docs:
#是否开启文档功能 本地为了配合eps功能不可关闭
enabled: true
# 设置日志级别
logging:
level:
com.cool: error