`
explore
  • 浏览: 80645 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

Spring <tx:advice/>和<aop:config/>配置事务

    博客分类:
  • J2EE
阅读更多

<tx:advice id="txAdvice" transaction-manager="transactionManager">
        <tx:attributes>
            <tx:method name="obtain*" read-only="true"/>
            <tx:method name="load*" read-only="true"/>
            <tx:method name="*" />
        </tx:attributes>
    </tx:advice>
    
 <aop:config proxy-target-class="true">
      <aop:pointcut id="serviceOperations" expression="execution(* service.*.*(..))"/>

      <aop:advisor advice-ref="txAdvice" pointcut-ref="serviceOperations"/>
  </aop:config>

 

<tx:method/>的默认配置如下:

事务传播:propagation="REQUIRED"

隔离级别:isolation="DEFAULT"     //采用数据库默认的事务隔离级别

事务是读/写

任何RuntimeException将触发事务回滚,任何CheckedException将不触发事务回滚 

 

 (* service.*.*(..))含义如下:

第一个 * —通配 任意返回值类型
第二个 * —通配 包service下的任意class
第三个 * —通配 包service下的任意class的任意方法
第四个 .. —通配 方法可以有0个或多个参数

综上:包service下的任意class的具有任意返回值类型、任意数目参数和任意名称的方法 

 

 

    Spring在TransactionDefinition接口中规定了7种类型的事务传播行为,它们规定了事务方法和事务方法发生嵌套调用时事务如何进行传播:

   

 

事务传播行为类型

说明

PROPAGATION_REQUIRED

如果当前没有事务,就新建一个事务,如果已经存在一个事务中,加入到这个事务中。这是最常见的选择。

PROPAGATION_SUPPORTS

支持当前事务,如果当前没有事务,就以非事务方式执行。

PROPAGATION_MANDATORY

使用当前的事务,如果当前没有事务,就抛出异常。

PROPAGATION_REQUIRES_NEW

新建事务,如果当前存在事务,把当前事务挂起。

PROPAGATION_NOT_SUPPORTED

以非事务方式执行操作,如果当前存在事务,就把当前事务挂起。

PROPAGATION_NEVER

以非事务方式执行,如果当前存在事务,则抛出异常。

PROPAGATION_NESTED

如果当前存在事务,则在嵌套事务内执行。如果当前没有事务,则执行与PROPAGATION_REQUIRED类似的操作。

 

分享到:
评论

相关推荐

    spring事务与配置

    ### Spring事务配置详解 #### 一、Spring事务配置概述 Spring框架提供了强大的事务管理功能,支持编程式事务管理和声明式事务管理。其中声明式事务管理是通过AOP(面向切面编程)技术来实现的,它能让我们在不修改...

    spring applicationContext 配置文件

    &lt;description&gt;Spring公共配置文件&lt;/description&gt; &lt;!-- mes 的數據庫 --&gt; &lt;bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close"&gt; &lt;property name="driverClass" ...

    struts2.3+hibernate3.6+spring3.1整合的纯xml配置的小项目

    advice-ref="noTxAdvice" /&gt; &lt;/aop:config&gt; &lt;bean id="fooService" class="x.y.service.DefaultFooService" /&gt; &lt;bean id="anotherFooService" class="x.y.service.ddl.DefaultDdlManager" /&gt; &lt;tx:advice ...

    Spring事务配置的五种方式

    第三种方式是使用Spring的`&lt;tx:advice&gt;`和`&lt;tx:method&gt;`元素在XML中直接定义事务规则,这比前两种方式更简洁: ```xml &lt;tx:advice id="txAdvice"&gt; &lt;tx:attributes&gt; &lt;tx:method name="find*" propagation=...

    ssh框架在application.xml中配置数据源所需jar

    &lt;tx:advice id="txAdvice" transaction-manager="transactionManager"&gt; &lt;tx:attributes&gt; &lt;tx:method name="add*" propagation="REQUIRED"/&gt; &lt;tx:method name="delete*" propagation="REQUIRED"/&gt; &lt;tx:...

    springmvc-ibatis

    &lt;context:annotation-config/&gt; &lt;!-- 扫描包 --&gt; &lt;context:component-scan base-package="com.org"/&gt; &lt;bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver...

    spring事务,xml方式和注解方式

    通过`&lt;tx:advice&gt;`和`&lt;aop:config&gt;`标签,可以定义事务切面并应用到特定的bean或方法上。 ```xml &lt;tx:advice id="txAdvice" transaction-manager="transactionManager"&gt; &lt;tx:attributes&gt; &lt;tx:method name="create...

    spring事务配置详解

    在Spring的配置文件中,使用`&lt;tx:advice&gt;`和`&lt;aop:config&gt;`元素来定义事务策略和切面。 ```xml &lt;tx:advice id="txAdvice" transaction-manager="transactionManager"&gt; &lt;tx:attributes&gt; &lt;tx:method name="*" ...

    SpringMVC+Hibernate全注解整合

    &lt;context:annotation-config/&gt; &lt;context:component-scan base-package="com.org.*" /&gt; &lt;bean id="jspViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"&gt; &lt;property...

    Maven拆分代码.zip

    &lt;!--配置连接池--&gt; &lt;bean id="dataSource" class=... &lt;aop:config&gt; &lt;aop:pointcut id="pointcut" expression="execution(* com.itheima.service.impl.*.*(..))"/&gt; &lt;aop:advisor advice-ref="advice" pointcut-ref=

    学习ssm整理的xml配置笔记

    在 XML 配置文件中,我们可以使用 `&lt;tx:advice&gt;` 元素来定义事务通知,用于指定事务属性。例如: ```xml &lt;tx:advice id="txAdvice" transaction-manager="transactionManager"&gt; &lt;tx:attributes&gt; &lt;tx:method name=...

    springmvcmybatis

    &lt;tx:advice id="txAdvice" transaction-manager="transactionManager"&gt; &lt;!-- 定义事务传播属性 --&gt; &lt;tx:attributes&gt; &lt;tx:method name="insert*" propagation="REQUIRED" /&gt; &lt;tx:method name="update*" ...

    SSH第7章上机.zip ACCP8.0

    &lt;tx:advice id="transactionAdvice" transaction-manager="transactionManager"&gt; &lt;tx:attributes&gt; &lt;tx:method name="add*" propagation="REQUIRED"/&gt; &lt;tx:method name="update*" propagation="REQUIRED"/&gt; &lt;tx:...

    使用Spring的声明式事务----AOP方式

    1. XML配置:在`&lt;tx:advice&gt;`元素中定义事务行为,然后通过`&lt;aop:config&gt;`或`&lt;aop:aspect&gt;`将事务行为应用到特定的bean或方法上。例如: ```xml &lt;tx:advice id="transactionAdvice" transaction-manager=...

    实验 spring 声明事务

    接着,使用`&lt;tx:advice&gt;`和`&lt;tx:attributes&gt;`定义事务策略,例如,将所有以`insert*`、`update*`和`delete*`开头的方法设置为`REQUIRED`传播属性,意味着这些方法必须在事务中执行。最后,使用`&lt;aop:config&gt;`配置...

    Spring xml 配置案例

    Spring提供`&lt;tx:annotation-driven&gt;`标签,基于注解进行事务管理,方便快捷: ```xml &lt;aop:config&gt; &lt;aop:advisor advice-ref="transactionAdvice" pointcut="execution(* com.bluesky.spring.service.*.*(..))"/&gt; ...

    spring2.0声明式事务

    在 Spring 2.0 中,可以使用 `&lt;tx:advice&gt;` 和 `&lt;aop:config&gt;` 元素来定义事务通知和切面。具体配置如下: ```xml &lt;bean id="transactionManager" class="org.springframework.jdbc.datasource....

    JTA事务源码示例

    &lt;aop:config&gt; &lt;aop:pointcut id="serviceOperation" expression="execution(* *..servi1ce*..*(..))"/&gt; &lt;aop:advisor pointcut-ref="serviceOperation" advice-ref="txAdvice"/&gt; &lt;/aop:config&gt; &lt;!-- 通知配置...

Global site tag (gtag.js) - Google Analytics