provtest/target/classes/application.yml

34 lines
1006 B
YAML
Raw Normal View History

2025-05-30 13:50:28 +08:00
server:
port: 8888
2025-06-06 11:11:07 +08:00
# spring配置
2025-05-30 13:50:28 +08:00
spring:
datasource:
driverClassName: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://47.109.202.121:3306/supervisionx_trace_data?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&allowMultiQueries=true
username: root
password: TCCT3.1415926
mybatis-plus:
2025-06-06 11:11:07 +08:00
# 搜索指定包别名
2025-05-30 13:50:28 +08:00
type-aliases-package: com.alihealth.d2d.provtest.domain
2025-06-06 11:11:07 +08:00
# 配置mapper的扫描找到所有的mapper.xml映射文件
2025-05-30 13:50:28 +08:00
#mapper-locations: classpath*:mapper/**/*Mapper.xml
mapper-locations: classpath:mapper/*.xml
2025-06-06 11:11:07 +08:00
# 加载全局的配置文件
2025-05-30 13:50:28 +08:00
config-location: classpath:mybatis/mybatis-config.xml
2025-06-06 11:11:07 +08:00
#逻辑删除配置
2025-05-30 13:50:28 +08:00
global-config:
db-config:
logic-not-delete-value: 0
logic-delete-value: 1
2025-06-06 11:11:07 +08:00
logic-delete-field: del_flag
logging:
level:
root: INFO
org.springframework: WARN
com.alihealth.d2d.provtest: DEBUG
mybatis: DEBUG
com.baomidou.mybatisplus: DEBUG