| 1234567891011121314151617181920212223242526 |
- # 开发环境配置
- # 使用本地 MySQL 127.0.0.1:3306/zxyj,账号 root/cfc123
- spring:
- datasource:
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://127.0.0.1:3306/zxyj?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai&useSSL=false&allowPublicKeyRetrieval=true&createDatabaseIfNotExist=true
- username: root
- password: cfc123
- sfms:
- datasource:
- enabled: false
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://127.0.0.1:3306/ax?useUnicode=true&characterEncoding=utf8&serverTimezone=Asia/Shanghai&useSSL=false&allowPublicKeyRetrieval=true&createDatabaseIfNotExist=true
- username: zxyj
- password: zxyj@123
- logging:
- level:
- com.etotem.cfc: debug
- admin:
- skip-captcha: true
- wechat:
- test-mode: true
|