43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
server:
|
||
port: 1688
|
||
|
||
# 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
|
||
|
||
logging:
|
||
level:
|
||
root: INFO
|
||
org.springframework: WARN
|
||
com.alihealth.d2d.provtest: DEBUG
|
||
mybatis: DEBUG
|
||
com.baomidou.mybatisplus: DEBUG
|
||
|
||
cert:
|
||
#本地
|
||
path: D:\ynyp\药品追溯\d2d\yunnan.pfx
|
||
#服务器
|
||
#path: /data/cert/d2d/yunnan.pfx
|
||
password: 12345678
|
||
algorithm: RSA
|