eclipe:间歇性com.mysql.jdbc.exceptions.jdbc4.CommunicationsException:通信链接失败

时间:2015-07-06 21:04:42

标签: java mysql eclipse jdbc

关于此问题有很多问题,但似乎没有解决我的问题。我得到了" com.mysql.jdbc.exceptions.jdbc4.CommunicationsException:通信链接失败"错误,但只有在成功处理了大约32000条记录之后 我成功连接到MySQL。我成功读写,所以它不是localhost / port / bind-address / etc问题。

我有一个应用程序,它读取CSV文件并处理每行数据,读取一些数据库表,插入其他数据库并更新其他表。我已经仔细检查了我的代码,并关闭了与数据库的每个连接。我可以通过MySQL Workbench观察MySQL服务器状态,负载相当稳定在0.5,连接范围从2到15并且似乎正在接近正常,其他一切看起来非常稳定并且正常范围。

但是在一个75000记录的CSV文件中有32000到34000条记录,我得到了上述错误。它并不总是以相同的记录结束,并且似乎没有任何关于记录的结果。

我有什么想法可以诊断出来吗?

这是我用于所有MySQL连接的代码:

public class MySQLAccess {
    private Connection connect = null;
    private Statement statement = null;
    private ResultSet resultSet = null;
    public String query = null;
    public int lastId = 0;

    private Connection getConnection() throws Exception {
        // reads a config properties file
        AWBConfig Config = new AWBConfig();
        String host = Config.Data.getProperty("mysql.host");
        if (!Config.Data.getProperty("mysql.port").isEmpty()) host += ":" + Config.Data.getProperty("mysql.port");
        Class.forName("com.mysql.jdbc.Driver");
        return DriverManager.getConnection("jdbc:mysql://"+host+"/" + Config.Data.getProperty("mysql.name") + "?user=" + 
            Config.Data.getProperty("mysql.user") + "&password=" + Config.Data.getProperty("mysql.pass"));
    }

    public ResultSet readDataBase() throws Exception {
        if (connect == null || connect.isClosed()) connect = getConnection();
        statement = connect.createStatement();
        resultSet = statement.executeQuery(query);
        return resultSet;
    }

    public ResultSet readDataBase(String _query) throws Exception {
        this.query = _query;
        resultSet = this.readDataBase();
        return resultSet;
    }

    public void writeData() throws Exception {
        if (connect == null || connect.isClosed()) connect = getConnection();
        statement = connect.createStatement();
        if (query.substring(0, 6).equals("INSERT")) {
            statement.executeUpdate(query, Statement.RETURN_GENERATED_KEYS);
            ResultSet rs = statement.getGeneratedKeys();
            if (rs.next()){
                this.lastId=rs.getInt(1);
            }
            rs.close();
        } else {
            statement.executeUpdate(query);
            this.lastId = -1;
        }
    }

    public void close() {
        try {
            if (resultSet != null) resultSet.close();
            if (statement != null) statement.close();
            if (connect != null) connect.close();
        } catch (Exception e) {
        }
    }
}

然后与数据库交互,我使用这种格式:

    protected void getCampaignById() throws Exception {
        _dba = new MySQLAccess();
        _dba.query = "SELECT * FROM table WHERE id = '" + String.valueOf(id) + "'";
        ResultSet rs = _dba.readDataBase();
        if (rs.next()) {
            ... do stuff with rs
        }
        _dba.close();
    }

1 个答案:

答案 0 :(得分:0)

好吧,我不确定问题究竟是什么,但我在我的核心应用程序的main()方法中将_dba更改为静态变量,然后将以下行添加到每个类构造函数中:

_dba = MyMainClass._dba;

然后从任何地方删除这些行(MyMainClass.main()除外):

_dba = new MySQLAccess();
...
_dba.close();

使数据库连接成为全局持久连接,不仅解决了我的错误,而且还为我带来了巨大的性能提升。