创建程序SpringBoot + SSM 时执行测试报错。
在此记录下解决问题的方法:
原连接方式:
jdbc:mysql://localhost:3306/user?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false&zeroDateTimeBehavior=convertToNull
解决增加 &serverTimezone=Asia/Shanghai 在尾部
最终连接:
jdbc:mysql://localhost:3306/user?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false&zeroDateTimeBehavior=convertToNull&serverTimezone=Asia/Shanghai