You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
spring: |
|
jackson: |
|
default-property-inclusion: non_null |
|
datasource: |
|
# url: jdbc:mysql://www.liuwanr.cn:3306/huoran?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai |
|
# username: super |
|
# password: huoran888 |
|
url: jdbc:mysql://rm-wz9y13wf7u8q8610fwo.mysql.rds.aliyuncs.com:3306/huoran?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai |
|
username: super |
|
password: huoran888 |
|
# url: jdbc:mysql://localhost:3306/msdw_tms?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai |
|
# username: root |
|
# password: root |
|
driver-class-name: com.mysql.jdbc.Driver |
|
# redis: |
|
# host: www.liuwanr.cn |
|
# port: 6379 |
|
# password: huoran |
|
redis: |
|
host: 47.102.214.131 |
|
port: 6379 |
|
password: |
|
mybatis-plus: |
|
configuration: |
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # 这个配置会将执行的sql打印出来,在开发或测试的时候可以用 |
|
mapper-locations: classpath:/mapper/**/*.xml |
|
global-config: |
|
db-config: |
|
id-type: auto |
|
logic-delete-field: is_del |
|
logic-delete-value: 0 |
|
logic-not-delete-value: 1 |
|
server: |
|
port: 8080 |
|
|
|
tms: |
|
thread: |
|
core-size: 20 |
|
max-size: 200 |
|
keep-alive-time: 10
|
|
|