InvalidConnectionAttributeException: The server time zone value
springboot工程集成mysql出现如下报错
InvalidConnectionAttributeException: The server time zone value
在数据里面执行如下语句即可解决问题
show variables like ‘%time_zone%’;
select now();
set global time_zone = ‘+8:00’;
flush privileges;
InvalidConnectionAttributeException: The server time zone value

相关文章: