基于注解的Spring MVC+Hiberntae

来源:互联网 发布:剧毒购买网络申报 编辑:程序博客网 时间:2024/05/01 23:31

一  如果使用注解方式配置事务 , 那么在applicationContext.xml中要配置好

<tx:annotation-driven proxy-target-class="true" transaction-manager="transactionManager" /> //打开注解事务

然后在需要事务的方法上面加上如下注解:

@Transactional(propagation=Propagation.REQUIRED , rollbackFor = java.lang.Exception.class)


二  如果使用xml方式配置事务, 那么在applicationContext.xml中要如下配置:

<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>

<tx:advice id="transactionAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="*" propagation="REQUIRED" rollback-for="java.lang.Exception" />
</tx:attributes>
</tx:advice>
  
<aop:config>  
<aop:pointcut expression="execution(* com.zf.service.*.*(..))" id="servicePoint"/>
<aop:advisor advice-ref="transactionAdvice" pointcut-ref="servicePoint" />  
</aop:config> 



在spring + hibernate配置事务的过程中发现一个问题。就是hibernate的sessionFactory必须使用数据源才支持事务,如果直接在hibernate配置文件中连接数据源 ,那么按照上面的方式配置好的事务是没有用的。

原创粉丝点击