| 1
2
3
4
5
6
7
8
9
10
 | | # 数据源配置 |  | spring: |  |     datasource: #配置数据源 |  |         type: com.alibaba.druid.pool.DruidDataSource |  |         driver-class-name: com.mysql.cj.jdbc.Driver |  |         url: jdbc:mysql://192.168.91.73:3306/pms?useUnicode=true&characterEncoding=utf-8&autoReconnect=true&useSSL=false&serverTimezone=GMT%2B8&zeroDateTimeBehavior=convertToNull |  |         username: root |  |         password: dysql,;.abc!@# |  |         druid: |  |         # 说明: 如果你没有指定useSSL=true ,启动项目会报红警告, 环境的问题,要灵活处理 | 
 |