尝试通过SIngleton模式连接到MySQL数据库

时间:2018-12-06 11:49:13

标签: java mysql sql

就像标题中所说的那样,我正在尝试通过单例设计模式连接到我的数据库,但是它似乎没有连接,而且我找不到问题。

public class DatabaseConnection {
    private static Connection conn;

    static{
        try{
            Class.forName("com.mysql.jdbc.Driver");
            conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/athentication", "root", "");

            System.out.println("connected");
        }catch(SQLException e){
            System.out.println(e);
        }
    }

    public static Connection getCon(){
        return conn;
    }
}

我还尝试通过main验证连接性,但控制台中未出现“ connected”消息,我也得到了这一点:

java.sql.SQLException:服务器时区值'Malay Peninsula Standard Time'无法识别或代表多个时区。如果要利用时区支持,必须配置服务器或JDBC驱动程序(通过serverTimezone配置属性)以使用更特定的时区值。

1 个答案:

答案 0 :(得分:0)

尝试将时区附加到连接字符串。

conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/athentication?serverTimezone=" + TimeZone.getDefault().getID(), "root", "");