InvalidConnectionAttributeException异常处理

问题:
com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: The server time zone value '���

分析:

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

正解:

jdbc:mysql://localhost:3306/lovewhf?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC

你可能感兴趣的:(java)