报错The server time zone value '�й���׼ʱ��' is unrecognize

估计是用了mysql8.0等高版本导致的

解决办法

在配置URL时加上serverTimezone=UTC

比如,用 ? 连接

String url="jdbc:mysql://localhost:3306/test?serverTimezone=UTC";  

如果URL用了allowMultiQueries=true,则要用 & 连接

 String url="jdbc:mysql://localhost:3306/test?allowMultiQueries=true&serverTimezone=UTC";    

发布了9 篇原创文章 · 获赞 3 · 访问量 3130

猜你喜欢

转载自blog.csdn.net/qq_43469464/article/details/105282176
今日推荐