I'm working on struts 2 framework with Hibernate 3.3. DB is Oracle 11g with ojdbc6 driver. My project was working fine since last 5 months. But nowadays it faces the following problem frequently.
First Error is
java.sql.SQLRecoverableException: Closed Connection
11:42:35,742 ERROR [stderr] (http-/0.0.0.0:8080-8) at oracle.jdbc.driver.PhysicalConnection.needLine(PhysicalConnection.java:5389)
11:42:35,742 ERROR [stderr] (http-/0.0.0.0:8080-8) at oracle.jdbc.driver.OracleStatement.closeOrCache(OracleStatement.java:1578)
11:42:35,742 ERROR [stderr] (http-/0.0.0.0:8080-8) at oracle.jdbc.driver.OracleStatement.close(OracleStatement.java:1563)
11:42:35,742 ERROR [stderr] (http-/0.0.0.0:8080-8) at oracle.jdbc.driver.OracleStatementWrapper.close(OracleStatementWrapper.java:94)
11:42:35,742 ERROR [stderr] (http-/0.0.0.0:8080-8) at oracle.jdbc.driver.OraclePreparedStatementWrapper.close(OraclePreparedStatementWrapper.java:80)
11:42:35,742 ERROR [stderr] (http-/0.0.0.0:8080-8) at org.hibernate.jdbc.AbstractBatcher.closePreparedStatement(AbstractBatcher.java:563)
11:42:35,742 ERROR [stderr] (http-/0.0.0.0:8080-8) at org.hibernate.jdbc.AbstractBatcher.closeStatement(AbstractBatcher.java:291)
11:42:35,742 ERROR [stderr] (http-/0.0.0.0:8080-8) at org.hibernate.jdbc.AbstractBatcher.closeQueryStatement(AbstractBatcher.java:307)
11:42:35,742 ERROR [stderr] (http-/0.0.0.0:8080-8) at org.hibernate.jdbc.AbstractBatcher.closeQueryStatement(AbstractBatcher.java:234)
11:42:35,742 ERROR [stderr] (http-/0.0.0.0:8080-8) at org.hibernate.loader.Loader.getResultSet(Loader.java:1826)
11:42:35,742 ERROR [stderr] (http-/0.0.0.0:8080-8) at org.hibernate.loader.hql.QueryLoader.iterate(QueryLoader.java:427)
11:42:35,742 ERROR [stderr] (http-/0.0.0.0:8080-8) ... 75 more
Then keep on coming follwing ERROR...
22:06:37,001 WARN [org.hibernate.util.JDBCExceptionReporter](http-/0.0.0.0:8079-11) SQL Error: 17008, SQLState: null
22:06:37,002 ERROR [org.hibernate.util.JDBCExceptionReporter] (http-/0.0.0.0:8079-11) Closed Connection
22:06:37,002 WARN [org.hibernate.util.JDBCExceptionReporter] (http-/0.0.0.0:8079-11) SQL Error: 17008, SQLState: null
22:06:37,002 ERROR [org.hibernate.util.JDBCExceptionReporter] (http-/0.0.0.0:8079-11) Closed Connection
22:06:37,002 WARN [org.hibernate.util.JDBCExceptionReporter] (http-/0.0.0.0:8079-11) SQL Error: 17008, SQLState: null
22:06:37,002 ERROR [org.hibernate.util.JDBCExceptionReporter] (http-/0.0.0.0:8079-11) Closed Connection
22:06:37,003 WARN [org.hibernate.util.JDBCExceptionReporter] (http-/0.0.0.0:8079-11) SQL Error: 17008, SQLState: null
22:06:37,003 ERROR [org.hibernate.util.JDBCExceptionReporter] (http-/0.0.0.0:8079-11) Closed Connection
22:06:37,011 WARN [org.hibernate.util.JDBCExceptionReporter] (http-/0.0.0.0:8079-11) SQL Error: 17008, SQLState: null
22:06:37,011 ERROR [org.hibernate.util.JDBCExceptionReporter] (http-/0.0.0.0:8079-11) Closed Connection
22:06:37,011 WARN [org.hibernate.util.JDBCExceptionReporter] (http-/0.0.0.0:8079-11) SQL Error: 17008, SQLState: null
22:06:37,012 ERROR [org.hibernate.util.JDBCExceptionReporter] (http-/0.0.0.0:8079-11) Closed Connection
22:06:37,012 WARN [org.hibernate.util.JDBCExceptionReporter] (http-/0.0.0.0:8079-11) SQL Error: 17008, SQLState: null
22:06:37,012 ERROR [org.hibernate.util.JDBCExceptionReporter] (http-/0.0.0.0:8079-11) Closed Connection
My Hibernate Configuration is
<session-factory>
<property name="hibernate.current_session_context_class">
thread
</property>
<!-- <property name="hibernate.show_sql">true</property> -->
<property name="hibernate.generate_statistics">true</property>
<property name="connection.url">jdbc:oracle:thin:@localhost:1521:orcl
</property>
<property name="connection.username">user</property>
<property name="connection.password">user</property>
<property name="connection.driver_class">
oracle.jdbc.OracleDriver
</property>
<property name="myeclipse.connection.profile">Oracle</property>
<property name="dialect"> org.hibernate.dialect.Oracle10gDialect</property>
</session-factory>
So to trace this issue i'd like to make the SQLState: null manually. Please help me to solve this issue.
