java.sql.SQLException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized...

java.sql.SQLException: The server time zone value ‘Öйú±ê׼ʱ¼ä’ is unrecognized…

这是在使用MySQL 8.0以上版本(MySQL连接驱动和版本都是8.0以上)的时候出现的问题错误,我们需要在访问数据库的Url后面加上以下的语句即可:

?serverTimezone=GMT%2B8

比如,我原来的url是:

"jdbc:mysql://localhost:3306/shiro_test"

应该修改为:

"jdbc:mysql://localhost:3306/shiro_test?serverTimezone=GMT%2B8"

就可以了。

你可能感兴趣的:(问题解决方法,MySql)