我们正在使用DAO模式的Hibernate和Spring,其中应用程序为每个数据库调用调用一个单独的DAO类。我们使用SQL Server作为数据库。
一段时间以来,我们看到对Hibernate的保存调用只会导致线程挂起,对此我们一无所知。相同的代码在不同的环境中运行(单独的服务器,单独的数据库服务器但版本相同)。
我们正在使用Hibernate 4.3.10,并且自两年以来应用程序没有任何变化。
出什么问题了?
调用保存的类的代码粘贴在下面。 BusinessAlerts只是一个POJO类。
@Override
@Transactional(propagation = Propagation.REQUIRED)
public void persistBusinessAlert(BusinessAlerts businessAlert) throws DAOException {
if (businessAlert == null) {
return;
}
try {
currentSession().save(businessAlert);
} catch (HibernateException e) {
throw new DAOException(e.getMessage(), e);
}
}
我们已经确定了线程堆栈跟踪,但是我无法将其完整地发布到这里。
数据库的休眠属性为:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">
<tx:annotation-driven transaction-manager="priceTransactionManager" />
<bean class="mro.util.CryptoPropertyPlaceholderConfigurer">
<property name="location" value="common_db.properties" />
</bean>
<bean id="priceDataSource" destroy-method="close"
class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="${db.driver}" />
<property name="url" value="${alert.db.url}" />
<property name="username" value="${alert.db.username}" />
<property name="password" value="${alert.db.password}" />
</bean>
<bean id="priceSessionFactory"
class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="priceDataSource" />
<property name="annotatedClasses">
<list>
<value>BusinessAlerts</value>
<value>Executions</value>
<value>AlertCodes</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
</bean>
<bean id="priceTransactionManager"
class="org.springframework.orm.hibernate4.HibernateTransactionManager">
<property name="sessionFactory" ref="priceSessionFactory" />
</bean>
</beans>
currentSession()
是一个Hibernate调用,当我们对其有更多了解时,就会出现以下内容:
protected final org.hibernate.Session currentSession() throws org.springframework.dao.DataAccessResourceFailureException;
0 aload_0 [this]
1 invokevirtual org.springframework.orm.hibernate4.support.HibernateDaoSupport.getSessionFactory() : org.hibernate.SessionFactory [10]
4 invokeinterface org.hibernate.SessionFactory.getCurrentSession() : org.hibernate.Session [11] [nargs: 1]
9 areturn
Line numbers:
[pc: 0, line: 129]
Local variable table:
[pc: 0, pc: 10] local: this index: 0 type: org.springframework.orm.hibernate4.support.HibernateDaoSupport