java.sql.SQLException异常

最后都变了- 提交于 2019-12-11 13:23:24

【推荐】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
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!