jndi資料來源

xunifeng發表於2009-10-12
jndi配置:
<Resource
name="jta/db2front"
auth="Container"
type="javax.sql.DataSource"
driverClassName="com.ibm.db2.jcc.DB2Driver"
url="****"
username="******"
password="******"
removeAbandoned="true"
removeAbandonedTimeout="600"
logAbandoned="true"
initialSize="0"
testOnBorrow="false"
testWhileIdle="false"
validationQuery="select current date from sysibm.sysdummy1"
maxActive="20"
maxIdle="5"
maxWait="-1"/>




用jndi連線資料來源在第一次請求時報錯如下,連續幾次請求後正常。不知為什麼?報錯如下:
org.springframework.jdbc.UncategorizedSQLException: SqlMapClient operation; uncategorized SQLException for SQL []; SQL state [null]; error code [-4499];
--- The error occurred while applying a parameter map.
--- Check the DimSdhDept.findDimSdhDeptByObject-InlineParameterMap.
--- Check the statement (query failed).
--- Cause: com.ibm.db2.jcc.b.DisconnectException: [ibm][db2][jcc][t4][2030][11211] 檢測到了通訊錯誤。所使用的通訊協議:TCP/IP。
所使用的通訊 API:SOCKETS。檢測到錯誤的位置:T4Agent.sendRequest()。
用於檢測錯誤的通訊功能:OutputStream.flush()。特定於協議的錯誤程式碼 沒有程式來讀取寫入管道的資料。、* 和 0。訊息:沒有程式來讀取寫入管道的資料。; nested exception is com.ibatis.common.jdbc.exception.NestedSQLException:
--- The error occurred while applying a parameter map.
--- Check the DimSdhDept.findDimSdhDeptByObject-InlineParameterMap.
--- Check the statement (query failed).
--- Cause: com.ibm.db2.jcc.b.DisconnectException: [ibm][db2][jcc][t4][2030][11211] 檢測到了通訊錯誤。所使用的通訊協議:TCP/IP。
所使用的通訊 API:SOCKETS。檢測到錯誤的位置:T4Agent.sendRequest()。
用於檢測錯誤的通訊功能:OutputStream.flush()。特定於協議的錯誤程式碼 沒有程式來讀取寫入管道的資料。、* 和 0。訊息:沒有程式來讀取寫入管道的資料。
Caused by: com.ibatis.common.jdbc.exception.NestedSQLException:
--- The error occurred while applying a parameter map.
--- Check the DimSdhDept.findDimSdhDeptByObject-InlineParameterMap.
--- Check the statement (query failed).
--- Cause: com.ibm.db2.jcc.b.DisconnectException: [ibm][db2][jcc][t4][2030][11211] 檢測到了通訊錯誤。所使用的通訊協議:TCP/IP。
所使用的通訊 API:SOCKETS。檢測到錯誤的位置:T4Agent.sendRequest()。
用於檢測錯誤的通訊功能:OutputStream.flush()。特定於協議的錯誤程式碼 沒有程式來讀取寫入管道的資料。、* 和 0。訊息:沒有程式來讀取寫入管道的資料。
Caused by: com.ibm.db2.jcc.b.DisconnectException: [ibm][db2][jcc][t4][2030][11211] 檢測到了通訊錯誤。所使用的通訊協議:TCP/IP。
所使用的通訊 API:SOCKETS。檢測到錯誤的位置:T4Agent.sendRequest()。
用於檢測錯誤的通訊功能:OutputStream.flush()。特定於協議的錯誤程式碼 沒有程式來讀取寫入管道的資料。、* 和 0。訊息:沒有程式來讀取寫入管道的資料。
at com.ibm.db2.jcc.c.a.a(a.java:385)
at com.ibm.db2.jcc.c.a.y(a.java:354)
at com.ibm.db2.jcc.c.a.l(a.java:312)
at com.ibm.db2.jcc.b.p.c(p.java:256)
at com.ibm.db2.jcc.b.ih.d(ih.java:2400)
at com.ibm.db2.jcc.b.ih.X(ih.java:1457)
at com.ibm.db2.jcc.b.ih.execute(ih.java:1441)
at org.apache.tomcat.dbcp.dbcp.DelegatingPreparedStatement.execute(DelegatingPreparedStatement.java:169)
at com.ibatis.sqlmap.engine.execution.SqlExecutor.executeQuery(SqlExecutor.java:185)
at com.asiainfo.appanalyze.base.extend.ibatis.PaginatedExecutor.executeQuery(PaginatedExecutor.java:97)
at com.ibatis.sqlmap.engine.mapping.statement.MappedStatement.sqlExecuteQuery(MappedStatement.java:221)
at com.ibatis.sqlmap.engine.mapping.statement.MappedStatement.executeQueryWithCallback(MappedStatement.java:189)
... 86 more
Caused by: java.net.SocketException: 沒有程式來讀取寫入管道的資料。
at java.net.SocketOutputStream.socketWrite0(Native Method)
at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:105)
at java.net.SocketOutputStream.write(SocketOutputStream.java:149)
at com.ibm.db2.jcc.c.gb.b(gb.java:1526)
at com.ibm.db2.jcc.c.gb.a(gb.java:1475)
at com.ibm.db2.jcc.c.a.y(a.java:348

[該貼被xunifeng於2009-10-12 12:06修改過]

相關文章