当前位置: 移动技术网 > IT编程>开发语言>Java > JDBC连接时出现的问题总结

JDBC连接时出现的问题总结

2019年09月14日  | 移动技术网IT编程  | 我要评论

妖精的尾巴50集,创新工场投资,廉江齐乐网

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

 

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网