记一次Spring Boot连接MySQL错误记录
MySQL驱动错误
driver-class-name: com.mysql.cj.jdbc.Driver
SSL连接错误和为了避免时区错误
useSSL=true&serverTimezone=UTC
然后全部内容是
driver-class-name: com.mysql.cj.jdbc.Driverusername: rootpassword: 123456url: jdbc:mysql://192.168.6.130:3306/home?useSSL=true&serverTimezone=UTC&characterEncoding=UTF-8
最后发现还是连接错误
出现链路连接故障 Communications link failure
参考了一些文章 是版本不一致造成的
然后需修改pro.xml
<!-- mysql驱动 --><dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>8.0.28</version></dependency>
最后就可以了
最后是密码加不加单引号都可以
password: 123456
# password: '123456'
参考了一些重要文章:
https://blog.csdn.net/yx185/article/details/100023658
https://blog.csdn.net/legendaryhaha/article/details/95487525