環境
MySQL:5.7.21
Spring-boot:2.1.0
MyBatis spring-boot-stater:1.3.2
MySQLドライバ:mysql-connector-java-8.0.13
解決
DDBC接続のURLに serverTimezone パラメータを付ける。
spring.datasource.url=jdbc:mysql://localhost:3306/test
↓
spring.datasource.url=jdbc:mysql://localhost:3306/test?serverTimezone=JST
備考
古い組み合わせ↓だとパラメータ無しでも普通に動くけど、例外出るようになったのは謎。(まー、どっか変わったんでしょうけど。。
MySQL:5.7.21
Spring-boot:2.0.5
MyBatis spring-boot-stater:1.3.2
MySQLドライバ:mysql-connector-java-5.1.47