com.alibaba.druid.pool.DruidDataSource : create connection error, url: jdbc:mysql:// java.sql.SQLE

错误信息:

com.alibaba.druid.pool.DruidDataSource   : create connection error, url: jdbc:mysql://
java.sql.SQLException: The server time zone value '�й���׼ʱ��' 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.

看报错信息为数据库驱动问题
原始pom文件的mysql版本是最新的


            mysql
            mysql-connector-java
            runtime

换为5.1.41的


            mysql
            mysql-connector-java
            5.1.41
        

运行成功

你可能感兴趣的:(令人烦躁的错误)