Java org.apache.tomcat.dbcp.dbcp.SQLNestedException:无法获取连接,池错误等待空闲对象超时

Java org.apache.tomcat.dbcp.dbcp.SQLNestedException:无法获取连接,池错误等待空闲对象超时,java,tomcat,Java,Tomcat,当我从arreylist将数据插入teble中,并且使用thred时,会出现此异常。 有人能告诉我吗?因为我终于接通了所有的连接 public class RunnableThread implements Runnable { List<String> li = new ArrayList<String>(); public RunnableThread(ArrayList<String> lii){

当我从arreylist将数据插入teble中,并且使用thred时,会出现此异常。 有人能告诉我吗?因为我终于接通了所有的连接

 public class RunnableThread implements Runnable {

  List<String> li = new ArrayList<String>();         

               public RunnableThread(ArrayList<String> lii){    
               this.li = lii;

                  }

             public void run() {                    
                Connection con =null;         
                PreparedStatement pstmt = null;
                ResultSet rs = null;
                try {

                  Iterator<String> it=li.iterator();                                                     
                    String splitter="!";
                        while(it.hasNext()){
                            String value =it.next().toString(); 
                    StringTokenizer strTok = new StringTokenizer(value,splitter);
                    String SaleOrderNum=strTok.nextElement().toString().trim();
                    String ItemNum=strTok.nextElement().toString().trim();              
                    String Material=strTok.nextElement().toString().trim();
                    String docType=strTok.nextElement().toString();             
                    String ReqQty=strTok.nextElement().toString().trim();               
                    String PurchOrderDate=strTok.nextElement().toString().trim();               
                    String PurchOrderNum=strTok.nextElement().toString().trim();    
                    String SoldToParty=strTok.nextElement().toString().trim();
                    String SoldToPartyName=strTok.nextElement().toString().trim();              
                    String DelivQty=strTok.nextElement().toString().trim();
                    String SalesOffice=strTok.nextElement().toString().trim();              
                    String Unit=strTok.nextElement().toString().trim();
                    String GIDate=strTok.nextElement().toString().trim();   
                    String Plant=strTok.nextElement().toString().trim();
                    String MaterialDesc=strTok.nextElement().toString().trim();             
                    String ShipToPartyCode=strTok.nextElement().toString().trim();
                    String ShipToPartyName=strTok.nextElement().toString().trim();
                    String ShipToPartyCity=strTok.nextElement().toString().trim();
                    String User_id=strTok.nextElement().toString().trim();                      
                    con = db.getConnection();
                    con.setAutoCommit(false);                                                                   

                    pstmt = con.prepareStatement("INSERT INTO **********) VALUES  ( ? ,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,getDate())");

                        pstmt.setString(1, );
                        pstmt.setString(2, );
                        pstmt.setString(3, );
                        pstmt.setString(4, );
                        pstmt.setString(5, );
                        pstmt.setString(6, );           
                        pstmt.setString(7, );           
                        pstmt.setString(8, );
                        pstmt.setString(9, );
                        pstmt.setString(10, );
                        pstmt.setString(11, );                  
                        pstmt.setString(12,);
                        pstmt.setString(13, );
                        pstmt.setString(14, );
                        pstmt.setString(15,);
                        pstmt.setString(16,);
                        pstmt.setString(17, );
                        pstmt.setString(18,);                   
                        pstmt.setString(19, );                                                      
                        pstmt.executeUpdate();                                                                                                                                     
                        con.commit();   
                        }               

                        } catch (InterruptedException e) {
                            e.printStackTrace();             

                        }catch (SQLException e) {   
                            e.printStackTrace();                         

                       }catch (Exception exe) {
                            exe.printStackTrace();                                              
                       } 
                       finally {
                        ReleaseResources.closeAll(rs, pstmt, con);                  
                      System.out.println("rel runable finly");
                        }   
    }
这是tamcat的堆栈跟踪

org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot get a connection, pool error Timeout waiting  for idle object
at org.apache.tomcat.dbcp.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:114)
at org.apache.tomcat.dbcp.dbcp.BasicDataSource.getConnection(BasicDataSource.java:1044)
at com.DB.db.getConnection(db.java:41)
at com..VL01N.RunnableThread.run(RunnableThread.java:62)
at java.lang.Thread.run(Unknown Source)
Caused by: java.util.NoSuchElementException: Timeout waiting for idle object
at org.apache.tomcat.dbcp.pool.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:1134)
at org.apache.tomcat.dbcp.dbcp.PoolingDataSource.getConnection(PoolingDataSource.java:106)
... 4 more
 rel runable finly

资源管理存在问题。您在while循环中打开了太多连接(以及preparedStatements),但只关闭了最后一个实例

请看以下代码段:

@Override
public void run() {
    Connection con =null;
    PreparedStatement pstmt = null;
    ResultSet rs = null;
    try {
        Iterator<String> it=li.iterator();
        String splitter="!";
        while(it.hasNext()) {
            String ...
            // Requesting new connection inside the while loop.
            con = db.getConnection();
            con.setAutoCommit(false);

            pstmt = con.prepareStatement("INSERT INTO **********) VALUES  ( ? ,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,getDate())");
            pstmt.setString... 

            con.commit(); 
            // Only last con & pstmt will get closed. Rest all will be lost.
        }
    } CATCH BLOCKS... {
    }  finally {
        ReleaseResources.closeAll(rs, pstmt, con);
        System.out.println("rel runable finly");
    }
}
@覆盖
公开募捐{
连接con=null;
PreparedStatement pstmt=null;
结果集rs=null;
试一试{
迭代器it=li.Iterator();
字符串拆分器=“!”;
while(it.hasNext()){
一串
//正在while循环内请求新连接。
con=db.getConnection();
con.setAutoCommit(假);
pstmt=con.prepareStatement(“插入**********)值(?、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、getDate());
pstmt.setString。。。
con.commit();
//只有最后一个con&pstmt将关闭。其余的都将丢失。
}
}挡块{
}最后{
释放资源。关闭所有(rs、pstmt、con);
System.out.println(“rel runable finly”);
}
}
您应该在while循环之外打开连接,并适当地管理preparedStatement。比如:

@Override
public void run() {
    Connection con =null;
    PreparedStatement pstmt = null;
    ResultSet rs = null;
    try {
        Iterator<String> it=li.iterator();
        String splitter="!";

        con = db.getConnection();
        con.setAutoCommit(false);
        pstmt = con.prepareStatement("INSERT INTO **********) VALUES  ( ? ,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,getDate())");

        while(it.hasNext()) {
            // Do all the operations
            String ...
            pstmt.setString...
        }
        con.commit();
    } CATCH BLOCKS... {
    }  finally {
        ReleaseResources.closeAll(rs, pstmt, con);
        System.out.println("rel runable finly");
    }
}
@覆盖
公开募捐{
连接con=null;
PreparedStatement pstmt=null;
结果集rs=null;
试一试{
迭代器it=li.Iterator();
字符串拆分器=“!”;
con=db.getConnection();
con.setAutoCommit(假);
pstmt=con.prepareStatement(“插入**********)值(?、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、getDate());
while(it.hasNext()){
//做所有的手术
一串
pstmt.setString。。。
}
con.commit();
}挡块{
}最后{
释放资源。关闭所有(rs、pstmt、con);
System.out.println(“rel runable finly”);
}
}

可能重复的#Jani:我不明白……更好的方法是:使用“与资源一起尝试”
@Override
public void run() {
    Connection con =null;
    PreparedStatement pstmt = null;
    ResultSet rs = null;
    try {
        Iterator<String> it=li.iterator();
        String splitter="!";

        con = db.getConnection();
        con.setAutoCommit(false);
        pstmt = con.prepareStatement("INSERT INTO **********) VALUES  ( ? ,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,getDate())");

        while(it.hasNext()) {
            // Do all the operations
            String ...
            pstmt.setString...
        }
        con.commit();
    } CATCH BLOCKS... {
    }  finally {
        ReleaseResources.closeAll(rs, pstmt, con);
        System.out.println("rel runable finly");
    }
}