JDBC连接时出现的问题总结
程序员文章站
2023-11-03 13:37:52
java.sql.SQLException: The server time zone value '�й���ʱ��' is unrecognized or represents more than one time zone. You must configure either the ser ......
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
上一篇: 泰晤士2021世界大学学科排名:世界大学计算机学科排名
下一篇: 学习丰胸粥的做法,拥有完美身材
推荐阅读
-
解决vue中使用Axios调用接口时出现的ie数据处理问题
-
局域网共享打印机连接时需要密码的问题解决方法
-
mysql启动时出现ERROR 2003 (HY000)问题的解决方法
-
JDBC连接时出现的问题总结
-
layui问题之渲染数据表格时,仅出现10条数据的解决方法
-
使用wordpress的$wpdb类读mysql数据库做ajax时出现的问题该如何解决
-
MFC连接数据库时,无法启动程序,计算机丢失libmysql.dll的问题解决办法
-
Angularjs在初始化未完毕时出现闪烁问题的解决方法分析
-
Python遍历zip文件输出名称时出现乱码问题的解决方法
-
mysql 8.0.18各版本安装及安装中出现的问题(精华总结)