在使用SpringBoot框架连接MySQL数据库时 报错
RuntimeException: Driver com.mysql.jdbc.Driver claims to not accept jdbcUrl 或
org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection;
原因是在数据库配置文件中url链接没有设置时区:
将配置文件中的
spring.datasource.url=jdbc:mysql://localhost:3306/xdclass?useUnicode=true&characterEncoding=utf8&useSSL=false
改成
spring.datasource.url=jdbc:mysql://localhost:3306/xdclass?serverTimezone=UTC&useUnicode=true&characterEncoding=utf8&useSSL=false