标签:exe 文章 bsp one man 服务器 table jdbc exception
异常名称
//数据源拒绝从服务器建立连接、消息:“连接太多” com.MySQL.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections"
原因一
max_connections=1000
原因二
还有一个可能就是代码里打开了太多的连接,但是忘记了在finally块里面关闭,从而导致在处理大数据的时候,抛出异常。下面这样的代码就不会有异常了。
try{ conn=Good.getConnection(); stmt = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE); String sql1="insert into cat_garbage values(‘"+rs.getInt("id")+"‘,‘"+rs.getInt("cid")+"‘,‘"+rs.getString("name")+"‘,‘"+rs.getString("keyword")+"‘)"; stmt.executeUpdate(sql1); } catch(SQLException|ClassNotFoundException|IOException e) { e.printStackTrace(); } finally { if(stmt!= null) stmt.close(); if(conn!= null) conn.close(); } }
本文章参考:吴孟达
Data source rejected establishment of connection, message from server: "Too many connections"解决办法
标签:exe 文章 bsp one man 服务器 table jdbc exception
原文地址:http://www.cnblogs.com/wkrbky/p/6232266.html