JDBC连接时出现的问题总结

2019-09-17 10:39:25来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

JDBC连接时出现的问题总结

java.sql.SQLException: The server time zone value '?й???????' 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.

原因:time zone 时区错误

解决方法:

一:通过sql命令临时修改,这个只是临时方法,关闭mysql服务后重启又恢复系统默认时区

  1.使用root用户登录mysql,输入下面命令。      

show variables like '%time_zone%';

  2.SYSTEM为SQL默认美国时间,因此将时区设置为当前系统时区即可,采用+8:00格式

set global time_zone='+8:00';

二:给连接数据库url添加serverTimezone=UTC语句

jdbc_url=jdbc:mysql://localhost:3306/login?serverTimezone=UTC

 


原文链接:https://www.cnblogs.com/jiaqi-qiu/p/JDBC.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:搭建自己的技术博客系列(一)使用 hexo 搭建一个精美的静态博客

下一篇:PlayJava Day008