12345678910111213141516171819202122232425262728 |
- server:
- port: 8081
- spring:
- redis:
- host: 59.110.141.39
- port: 6379
- timeout: 9000
- password: CHENyi_406
- jackson:
- default-property-inclusion: non_null
- # MySQL
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://59.110.141.39:3306/bms?serverTimezone=Asia/Shanghai&characterEncoding=utf8&useSSL=true
- username: useryxk
- password: CHENyi406@
- dbcp2:
- min-idle: 10
- initial-size: 15
- max-total: 20
- max-wait-millis: 2000
- # mybatis-plus
- mybatis-plus:
- type-aliases-package: com.zy.bms.entity
- mapper-locations: classpath:mapper/*.xml
- # configuration:
- # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|