事务超时无法在oracle上使用oracle

时间:2009-03-11 15:28:08

标签: oracle hibernate jdbc transactions timeout

我在oracle上设置hibernate的事务超时时遇到问题。它不起作用。任何人都可以帮忙吗? “SaveOrUpdate”将不会在规定的10秒内返回。它会挂很长一段时间。 我正在使用Oracle 10r2。

休眠配置文件

<hibernate-configuration>
<session-factory>
    <property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
    <property name="connection.url">jdbc:oracle:thin:@9.9.9.9:1521:orcl</property>
    <property name="connection.username">foouser</property>
    <property name="connection.password">foopass</property>
    <property name="hibernate.c3p0.min_size">5</property>
    <property name="hibernate.c3p0.max_size">20</property>
    <property name="dialect">org.hibernate.dialect.Oracle9Dialect</property>
    <property name="current_session_context_class">thread</property>
    <!-- Disable the second-level cache  -->
    <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
    <!-- Echo all executed SQL to stdout -->
    <property name="show_sql">false</property>
    <!-- Mapping files -->
    <mapping resource="foo.hbm.xml"/>
</session-factory>
</hibernate-configuration>

Hibernate类

public class foo implements Serializable
{
...
    public void save() throws Exception
    {
        Session     dbSession = null;
        Transaction tran      = null;
        try
        {
            dbSession = PersistenceMgr.getPersistenceMgr().getDbSession();
            tran      = dbSession.beginTransaction();
            tran.setTimeout(10); // 10 seconds
            dbSession.saveOrUpdate(this);
            tran.commit();
        }
        catch (HibernateException e)
        {
            if(tran!=null)
            {
                try{tran.rollback();}
                catch(HibernateException he){}
            }
            ...
        }
        finally
        {
            if( dbSession != null )
            {
                try{dbSession.close();}
                catch(HibernateException e){}
            }
        }
    }

}

3 个答案:

答案 0 :(得分:3)

需要在事务开始之前设置超时。

而不是

tran = dbSession.beginTransaction();
tran.setTimeout(10);// 10 seconds

tran = dbSession.getTransaction();
tran.setTimeout(10);
tran.begin();

答案 1 :(得分:0)

答案 2 :(得分:0)

这是使用JTA吗?如果没有,JDBC本身没有用于设置事务超时的API,因此Hibernate尝试通过跟踪在事务中执行JDBC语句并设置Statement.setQueryTimeout时剩余多少指定的超时时间来管理它。可能是该逻辑中存在错误,或者Oracle JDBC驱动程序在设置语句超时方面存在错误。

如果您发现它是Hibernate错误,https://hibernate.onjira.com