我在 Spring 3.2 和 Hibernate 3.3 中得到“没有绑定到线程的 Hibernate 会话,并且配置不允许在此处创建非事务性会话”
DAO 类:
@Repository
public class ContactDAOImpl implements ContactDAO {
@Autowired
private SessionFactory sessionFactory;
public List<Contact> listContact() {
return sessionFactory.getCurrentSession().createQuery("from Contact").list();
}
......
}
}
上下文配置:
<beans .....>
<context:annotation-config />
<context:component-scan base-package="org.spring.*" />
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
.......
</bean>
<!-- Hibernate session factory -->
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="dataSource">
<ref bean="dataSource"/>
</property>
<property name="annotatedClasses">
<list>
<value>org.spring.entity.Contact</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.SybaseDialect</prop>
<prop key="hibernate.show_sql">false</prop>
</props>
</property>
</bean>
虽然我已经定义了 TransactionManager,但我并没有在任何地方使用它。
为什么我会收到上述错误 - 当我的代码中没有任何地方使用或定义事务时?
为什么我必须定义一个事务?