hibernate3.2打开游标过多:出现ORA-01000: maximum open cursors exceeded错误

    系统采用系统采用hibernate 3.2.0连接Oracle 10g:

 

    dao类中获取hibernate session的方式,都是通过ThreadLocal来的,并且确认会在数据库操作完成之后,在finally中执行Session.close()。 但是运行时间长了以后,出现ORA-01000: maximum open cursors exceeded

 

    网上翻看了一些资料,基本得出结论:jdbc规范中要求connection在close的时候自动close它所产生的 statement和result set,但是容器的数据源中的connection,因为被容器托管了,所以在close的时候,并不会按照jdbc的规范去做,它只是回到连接池,而不 是真正关闭。所以执行Session.close后,但是Statement没有被同时关闭,而且因为仍然被应用也不会被gc,长时间运行就会造成游标过 大。

 

解决的途径:

  途径一:

在hibernate.org的一个faq上看到了这一条:

Q:After a while, Oracle throws this exception: too many open cursors

A:The Oracle JDBC driver doesn't much like to have its prepared statements cached. Disable PreparedStatement caching for the connection pool.

 

   途径二:

增大游标最大值,据说是不影响性能,有待考验,Oracle默认游标最大值是300,如果想增加最大值可以用如下方法:

sqlplus /nolog

SQL>conn /as sysdba

SQL>show parameter open_cursors;

SQL>alter system set open_cursors=1500 scope=both;

退出重启oracle服务即可

你可能感兴趣的:(hibernate3.2打开游标过多:出现ORA-01000: maximum open cursors exceeded错误)