idea 2017 Spring Boot JPA连接mysql数据库提示
The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone.
报错 截图
serverTimezone=GMT%2B8 (格林尼治标准时间,曾是世界时)
也可以设置成其它时区如UTC(协调世界时,现作为世界标准时间使用)
解决方法
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/scott?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8
spring.datasource.username=root
spring.datasource.password=123456
然后启动 Web 应用就不会报错了