Spring整合Mybatis错误:Caused by: com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: The

Spring整合Mybatis时出现:Caused by: com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: The server time zone…

其实这个不是spring boot + mybatis的问题, 其实是为了使MySQL JDBC驱动程序的5.1.33版本与UTC时区配合使用,必须在连接字符串中明确指定serverTimezone。

也就是`在这里插入代jdbc:mysql://localhost:3306/lovewhf?解决方案:useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTCjdbc:mysql://localhost:3306/lovewhf?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
在这里边明确指定serverTimezone

你可能感兴趣的:(Spring整合Mybatis错误:Caused by: com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: The)