SpringBoot中The server time zone value '?D1ú±ê×?ê±??' is unrecognized问题

    身为一个初学SpringBoot的小萌新,在自学的过程中每每遇到没有见过的错误,都会非常头大,接下来是我在自学的过程中问题和解决方法,希望对你有帮助。

    在进行SpringBoot对MyBatis进行整合时,需要对数据库的相关信息进行配置,如:
    


spring.datasource.DriverClassName=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/ssm?characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2b8
spring.datasource.username=root
spring.datasource.password=zxm123456

mybatis.type-aliases-package=com.zxm.pojo  //为实体类取别名,在mapper中可以直接使用驼峰式名称,如user
                                             而不是全名,如com.zxm.pojo.User


    遇到下类问题:  是因为mysql默认服务器时区问题。
    


com.mysql.cj.exceptions.InvalidConnectionAttributeException: 
   The server time zone value '?D1ú±ê×?ê±??' is unrecognized 
   or represents more than one time zone. You must configure either 
   the server or JDBC driver (via the serverTimezone configuration property)
    to use a more specifc time zone value if you want to utilize time zone support.


    修改方法:将mysql中url的配置信息修改成
    


jdbc:mysql://localhost:3306/ssm?characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2b8


 

你可能感兴趣的:(SpringBoor学习笔记)