美文网首页
java.sql.SQLException: The serve

java.sql.SQLException: The serve

作者: 方寸万重 | 来源:发表于2019-02-21 09:07 被阅读0次
    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.
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:127)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:95)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:87)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:61)
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:71)
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:76)
    at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:874)
    at com.mysql.cj.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:456)
    at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:234)
    at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:227)
    at java.sql.DriverManager.getConnection(DriverManager.java:664)
    at java.sql.DriverManager.getConnection(DriverManager.java:247)
    at com.mytestings.mysql.MySQLDemo.main(MySQLDemo.java:23)
    

    解决方法:

    就是上面标红的SQL异常,我们需要在数据库 URL中设置serverTimezone属性:

    static final String DB_URL = "jdbc:mysql://localhost:3306/RUNOOB" +
            "?serverTimezone=GMT%2B8";
    

    这里的 GMT%2B8 代表是东八区。

    相关文章

      网友评论

          本文标题:java.sql.SQLException: The serve

          本文链接:https://www.haomeiwen.com/subject/gbvlyqtx.html