使用Spring 2.0 新特性实现声明式事务管理-基于XML Schema

本文介绍如何在Spring2.0中配置声明式事务管理。通过<tx:advice>设置事务属性,并利用<aop:config>进行切面配置。文章详细解释了事务管理器及各种事务属性的作用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

在Spring 2.0 中要设置声明式事务管理,可以依赖Spring 2.0 的<aop>与<tx>标签

首先需要设置声明

 

<beans xmlns="http://www.springframework.org/schema/beans"
             xmlns:xsi
="http://www.w3.org/2001/XMLSchema-instance"
             xmlns:aop
="http://www.springframework/org/schema/aop"
             xmlns:tx
="http://www.springframework.org/schema/tx"
             xsi:schemaLocation
="http://www.springframework.org/schema/beans
                                                http://www.springframework.org/shcema/beans/spring-beans-2.0./xsd
                                                http://www.springframework.org/scheam/aop
                                                http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
                                                http://www.springframework.org/schema/tx
                                                http://www.springframework.org/schema/tx/spring-tx-2.0.xsd"
>
</beans>                                

事务是系统层面的服务,也就是一个Aspect,其实具体来说是一个advice,您可以使用<tx:advice>标签来提供这个advice它需要设置一个TransactionManager,并在当中使用<tx:attributes>来设置事务相关属性

具体应用:

 

<bean id="dataSource"......></bean>
<bean id="transactionManager" .....></bean>
<bean id="userDAO"....></bean>

<!--
    注意到<tx:method>中的属性设置,对于传播行为,隔离层级,只读,超时,异常时撤销或提交,都对应的propagation,
    isolation,timeout,read-only,rollback-for,no-rollback-for属性可以设置,若不设置,默认值是REQUIRED,DEFAULT,-1,false
 
-->
<tx:advice id="txtAdvice" transaction-manager="transactionManager">
    
<tx:attributes>
         
<tx:method name="insert*" propagation="REQUIRED"/>
         
<tx:methpd name="find*"    read-only="true"/>
    
</tx:attributes>
</tx:advice>

<aop:config>
   
<aop:pointcut id="userDAOPointCut" expression="execution(* onlyfun.service.IUserDAO.* (..))"/>
   
<aop:advisor advice-ref="txAdvice" pointcut-ref="userDAOPointCut"/>
</aop:config>


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值