23 lines
690 B
YAML
23 lines
690 B
YAML
spring:
|
|
# datasource
|
|
datasource:
|
|
url: jdbc:mysql://47.112.193.81:3306/testb5f4?useSSL=false&useUnicode=true&characterEncoding=UTF-8
|
|
driver-class-name: com.mysql.jdbc.Driver
|
|
username: testb5f4
|
|
password: F4df4db0ed86@11
|
|
# redis
|
|
redis:
|
|
|
|
# mybatis-plus
|
|
mybatis-plus:
|
|
configuration:
|
|
map-underscore-to-camel-case: true # 虽然默认为 true ,但是还是显示去指定下。
|
|
global-config:
|
|
db-config:
|
|
id-type: auto
|
|
logic-delete-value: 1 # 逻辑已删除值(默认为 1)
|
|
logic-not-delete-value: 0 # 逻辑未删除值(默认为 0)
|
|
mapperLocations: classpath*:mapper/*.xml
|
|
typeAliasesPackage: cn.iocoder.mall.demo.business.dataobject
|
|
|