26 lines
771 B
YAML
26 lines
771 B
YAML
|
server:
|
||
|
port: 8888
|
||
|
|
||
|
# spring??
|
||
|
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:
|
||
|
# ???????
|
||
|
type-aliases-package: com.alihealth.d2d.provtest.domain
|
||
|
# ??mapper?????????mapper.xml????
|
||
|
#mapper-locations: classpath*:mapper/**/*Mapper.xml
|
||
|
mapper-locations: classpath:mapper/*.xml
|
||
|
# ?????????
|
||
|
config-location: classpath:mybatis/mybatis-config.xml
|
||
|
#??????
|
||
|
global-config:
|
||
|
db-config:
|
||
|
logic-not-delete-value: 0
|
||
|
logic-delete-value: 1
|
||
|
logic-delete-field: del_flag
|