我正在尝试在Spring中配置事务管理器,以便使用@Transactional
注释我的服务方法。不幸的是,我一直在寻找其他解决方案,但我无法找到一个解决方案。我正在使用Tomcat 7.服务器启动没有错误但是当我调用服务方法时它根本无法识别{{1} }。
@Transacional
public class GenericDaoImplementation<T>
{
private Class<T> entityClass;
public GenericDaoImplementation(Class<T> entityClass)
{
this.entityClass = entityClass;
}
@Transactional(propagation = Propagation.REQUIRED)
public T getByID(String id)
{
Session session = HibernateUtil.getSessionFactory().getCurrentSession();
T obj = (T) session.get(entityClass, id);
return obj;
}
}
是被调用的方法。如果我手动启动事务,从数据库中检索数据没有问题。当我用getByID(String id)
注释它时会抛出此错误:
@Transactional
org.hibernate.HibernateException: get is not valid without active transaction
<?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"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">
<context:component-scan base-package="dk.accunu" />
<tx:annotation-driven transaction-manager="transactionManager"/>
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/test"/>
<property name="username" value="root"/>
<property name="password" value=""/>
</bean>
<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="packagesToScan">
<list>
<value>dk.accunu.model</value>
</list>
</property>
<property name="configLocation" value="classpath:hibernate.cfg.xml" />
</bean>
<bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
</beans>
我需要一些建议。我认为这是一个配置问题,我一直试图解决它。
答案 0 :(得分:1)
您需要将DAO注册为弹簧组件,并通过定义<context:component-scan >
告诉spring在哪里找到它。查看this example。
答案 1 :(得分:1)
如果您想使用spring事务,则必须通过bean
或使用xml bean configuration
annotations
将该类声明为@Component,@Service, @Repository
。
如果要使用注释,则需要确保xml配置中的component scan
元素可以扫描您的类