【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>>
新版数据库驱动连接异常
java.sql.SQLException: The server time zone value 'EDT' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
- 使用的数据库是MySQL,驱动是8.0.16。这是由于新版数据库驱动连接程序需要指定UTC时区所造成的,在jdbc连接的url后面加上serverTimezone=GMT即可解决问题,如果需要使用gmt+8时区,需要写成GMT%2B8,否则会被解析为空。 再一个解决办法就是使用低版本的MySQL jdbc驱动,5.1.28不会存在时区的问题。
修改后:
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/wljkzx?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8
spring.datasource.username=root
spring.datasource.password=123
来源:oschina
链接:https://my.oschina.net/u/3575340/blog/3073384