我一直在摔跤這個問題了一段時間,並沒有看到一個解決方案。希望任何人都可以幫助我。春:沒有事務管理器已配置
我配置了一個HibernateTransactionManager。但是,我在日誌文件中看到以下消息:
DEBUG [http-8080-1] AnnotationTransactionAttributeSource.getTransactionAttribute(107)|添加事務方法[Cashin的]與屬性[PROPAGATION_REQUIRED,ISOLATION_DEFAULT,-nl.forestfields.picnic.domain.model.exception.IllegalCostException]
DEBUG [HTTP-8080-1] AnnotationTransactionAspect.createTransactionIfNecessary(267)|跳過事務連接點[nl.forestfields.picnic.view.controller.ShoppingListController.cashIn],因爲沒有配置事務管理器
而且,如果發生異常,事務不會回滾。
這裏是我的配置:
野餐servlet.xml中:
<beans>
<context:component-scan base-package="picnic" />
<context:annotation-config />
<tx:annotation-driven />
.
.
.
野餐上下文db.xml:
<bean class="org.springframework.orm.hibernate3.LocalSessionFactoryBean" id="sessionFactory">
<property name="configLocation" value="classpath:hibernate.cfg.xml" />
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">${hibernate.dialect}</prop>
<prop key="hibernate.show_sql">${hibernate.show_sql}</prop>
</props>
</property>
<property name="dataSource" ref="dataSource" />
</bean>
<bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName">
<value>${hibernate.connection.driver_class}</value>
</property>
<property name="url">
<value>${hibernate.connection.url}</value>
</property>
<property name="username">
<value>${hibernate.connection.username}</value>
</property>
<property name="password">
<value>${hibernate.connection.password}</value>
</property>
</bean>
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
的代碼應該在事務內執行:
@Transactional(rollbackFor=IllegalCostException.class)
public ModelAndView cashIn(@RequestParam final Long id) throws IllegalCostException, llegalOrderStateException, IllegalShoppingListStateException {
final ShoppingList shoppingList = shoppingListRepository.getById(id);
shoppingList.cashIn();
shoppingListRepository.add(shoppingList);
return new ModelAndView(...);
}
任何人都可以看到問題嗎?
乾杯, Jippe
2.5年後...您的回答解決了我的問題。抱歉,我無法接受您的回答,但至少您得到了我的+1。 – Paul 2011-08-23 04:31:41