错误:数据源拒绝建立连接,来自服务器的消息:“连接数过多”

2022-09-04 22:34:28

我创建了一个应用程序,每 5 分钟将数据写入一次数据库。

但是,一段时间后会出现此错误:

Error: Data source rejected establishment of connection, message from server: "Too many connections"

我一直在搜索,并告诉您在每个请求端之后关闭与数据库的连接。

我试过这个:

conexao.close();

但它给了我这个错误:

No operations allowed after conection closed.

如果这个问题没有很好地表述,我深表歉意。

感谢您的帮助

---------------------我尝试过但不起作用---------------------------

finally{ 
    if(conexao!=null)
   conexao.close();
   }

  Class.forName("com.mysql.jdbc.Driver");
        Connection conexao = (Connection) DriverManager.getConnection("jdbc:mysql://localhost/bdTeste", "root", "root");
        Statement stm = conexao.createStatement();
        BufferedReader reader = new BufferedReader(new FileReader("C:/Users/RPR1BRG/Desktop/test.txt"));

        String dados[] = new String[6];
        String linha = reader.readLine();

        while (linha != null) {

            StringTokenizer st = new StringTokenizer(linha, ";\"");

            dados[0] = st.nextToken();
            dados[1] = st.nextToken(); 
            dados[2] = st.nextToken();
            dados[3] = st.nextToken();
            dados[4] = st.nextToken();
            dados[5] = st.nextToken();

             DateFormat dateFormat = new SimpleDateFormat("d-M-yy");

    PreparedStatement stmt = (PreparedStatement) conexao.prepareStatement("replace into registos"
    + " (data_registo, hora_registo, IdSensor, Temperatura, Humidade, pt_orvalho) values (?,?,?,?,?,?)");
                    try {
                        stmt.setDate(1, new java.sql.Date(dateFormat.parse(dados[0]).getTime()));
                        stmt.setString(2, dados[1]);
                        stmt.setString(3, dados[2]);
                        stmt.setString(4, dados[3]);
                        stmt.setString(5, dados[4]);
                        stmt.setString(6, dados[5]);

                    } catch (java.text.ParseException ex) {
                        Exceptions.printStackTrace(ex);
                    }


stmt.executeUpdate();

            linha = reader.readLine();
            PrintWriter writer = new PrintWriter("C:/Users/RPR1BRG/Desktop/test.txt"); 
            writer.print("");
            writer.close();
            Verifica();
            }

    } catch (ClassNotFoundException | SQLException | IOException e) {

        System.err.println("Erro: " + e.getMessage());

    }finally{ 
    if(conexao!=null)
   conexao.close();
   }

答案 1

当您在使用后正确关闭连接时,会出现此类问题。

请在之后使用块来适当地关闭连接。这是因为为了确保即使在出现意外异常或错误时也能正确关闭连接。请注意,块内的语句始终执行。它允许程序员避免清理代码被返回,继续或中断意外绕过finallycatchfinally

注: 如果 JVM 在执行 try 或 catch 代码时退出,则 finally 块可能不会执行。同样,如果执行 try 或 catch 代码的线程被中断或终止,则即使应用程序作为一个整体继续,finally 块也可能不会执行。

正如您在评论中所要求的,我已经添加了代码示例来实际演示!

Connection con = null
try{
 //Establishing connection to datasource
 con = DBConnection.getConnection();
 //perform DB operations
 ...
 ...
 ...
}catch(SQLException sqlEx){
 /*To catch any SQLException thrown during DB 
  *Operations and continue processing like sending alert to admin
  *that exception occurred.
  */
}finally{
 /*This block should be added to your code
  * You need to release the resources like connections
  */
 if(con!=null)
  con.close();
}

请注意,变量的声明应该在适当的范围内,以将其关闭在块中。Connectionfinally

希望这有帮助!


答案 2

这可能是因为配置的不适合在 JDBC 中设置的连接池大小或您针对 DB 打开的连接数。max_connections

检查 mysql 中的 数量:max_connections

show variables like 'max_connections';

确保使用 DB Max 连接数打开的连接具有适当的值。


推荐