123456789101112131415161718192021222324252627282930313233 |
- server:
- port: 20227
- spring:
- application:
- name: lift-business-service
- profiles:
- active: dev
- datasource:
- url: jdbc:mysql://132.232.206.88:3306/rdsliftmanager?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true&serverTimezone=UTC
- username: root
- password: ms.c88pocY/
- #redis缓存配置
- redis:
- database: 0 #数据库索引,默认为0
- host: 132.232.206.88 #服务器地址
- port: 6379 #端口
- password: mdx12358 #验证密码
- jedis:
- pool:
- max-active: 8 #最大连接数
- max-idle: 8 #最大空闲链接
- max-wait: 20000ms
- min-idle: 0
- #自动添加createTime、isDelete 等字段
- xwy:
- mybatis:
- audit:
- enabled: true
- mybatis-plus:
- mapper-locations: classpath*:/mapper/**/**Mapper.xml
|