hi! i get the following exception: java.net.SocketException MESSAGE: Broken pipe
STACKTRACE: java.net.SocketException: Broken pipe at java.net.SocketOutputStream.socketWrite0(Native Method) at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) my conncetion is like that: <transactionManager type="JDBC" commitRequired="false"> <dataSource type="SIMPLE"> <property value="${driver}" name="JDBC.Driver" /> <property value="${url}" name="JDBC.ConnectionURL" /> <property value="${username}" name="JDBC.Username" /> <property value="${password}" name="JDBC.Password" /> <property name="Pool.PingQuery" value="select 1 from Employees" /> <property name="Pool.PingEnabled" value="true" /> <property name="Pool.PingConnectionsOlderThan" value="0" /> <property name="Pool.PingConnectionsNotUsedFor" value="0" /> </dataSource> </transactionManager> my code is like that: public YTUser getUserProfile(String userId) throws SQLException{ return (YTUser) sqlMapper.queryForObject("selectUser",userId); } i read that a solution could be to recycle dead connection. is it true? how can i do it? -- View this message in context: http://old.nabble.com/Broken-pipe-and-how-to-recycle-dead-connections-tp26226564p26226564.html Sent from the iBATIS - User - Java mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: user-java-unsubscr...@ibatis.apache.org For additional commands, e-mail: user-java-h...@ibatis.apache.org