解決連接池泄漏步驟
登錄weblogic console, %Domain% -> Services -> JDBC -> Connection Pools -> jdbc/ioa
Configuration頁 -> Connection, 點開Advanced Options, 修改以下配置項狀態:
配置項名稱 |
默認值 |
修改為 |
說明 |
Enable Connection Leak Profiling |
禁用 |
啟用 |
開啟連接池泄漏的監控。 |
Enable Connection Profiling |
禁用 |
啟用 |
開啟連接池監控。 |
Inactive Connection Timeout |
0 |
100 |
連接在指定時間內(單位:秒)沒有活動的話,WebLogic會將之釋放并回收到連接池。 |

在沒有解決連接池泄漏問題之前,如果沒有請求時連接池將一直保持為0,不會再有連接池滿造成請求無法響應的問題,我們也不用擔心再挨客戶罵,也為我們解決問題爭取了寶貴到時間。
好了,下面才是關鍵。
過一段時間后,在bea\user_projects\domains\%domainname%\%servername%目錄下,打開%servername%.log,查找,"A JDBC pool connection leak was detected",如果WebLogic已經監控到有連接池泄漏的話,就可以找到以下日志,并且很清楚的告訴我們在哪一個類的哪行代碼創建了連接,但沒有關閉(注意紅色加粗字體):
at weblogic.jdbc.wrapper.PoolConnection.init(PoolConnection.java:75)
at weblogic.jdbc.pool.Driver.allocateConnection(Driver.java:254)
at weblogic.jdbc.pool.Driver.connect(Driver.java:84)
at weblogic.jdbc.jts.Driver.getNonTxConnection(Driver.java:546)
at weblogic.jdbc.jts.Driver.connect(Driver.java:140)
at weblogic.jdbc.common.internal.RmiDataSource.getConnection(RmiDataSource.java:344)
at com.cp.fw.dao.BaseDAO.getConnection(BaseDAO.java:78)
at com.cp.fw.dao.dataset.DataSetOp.init(DataSetOp.java:78)
at com.cp.fw.dao.dataset.DataSetOp.<init>(DataSetOp.java:45)
at com.cp.ia.util.WorkFlowUtil.getNextWrokFlowId(WorkFlowUtil.java:93)
at
……
另外一種方法:
在WebLogic Console,展開 %DomainName% -> Servers -> %ServerName%,選到Logging – Server頁,在頁面最下方點擊 "View server log",同樣查找 "A JDBC pool connection leak was detected",也可以找到同樣的日志。
WebLogic對于日志事件的說明:
Message ID |
BEA-001074 |
Subsystem |
JDBC |
Message |
A JDBC pool connection leak was detected. A connection leak occurs when a connection obtained from the pool was not closed explicitly by calling close() and then was disposed by the garbage collector and returned to the connection pool. The following stack trace at create shows where the leaked connection was created. Stack trace at connection create: |
Detail |
A JDBC pool connection leak was detected. A connection leak occurs when a connection obtained from the pool was not closed explicitly by calling close() and then was disposed by the garbage collector and returned to the connection pool. A stack trace is printed indicating where the leaked connection was created. |
Cause |
A JDBC pool connection leak was detected. A connection leak occurs when a connection obtained from the pool was not closed explicitly by calling close() and then was disposed by the garbage collector and returned to the connection pool. A stack trace is printed indicating where the leaked connection was created. |
Action |
Close the connection appropriately. |
原文:http://blog.csdn.net/esky2000/archive/2008/07/22/2689929.aspx