`

spring 事物通过<tx 标签配置

 
阅读更多

配置文件如下:

<?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:jdbc="http://www.springframework.org/schema/jdbc"
 xmlns:p="http://www.springframework.org/schema/p"
 xmlns:aop="http://www.springframework.org/schema/aop"
 xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.0.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
    http://www.springframework.org/schema/jdbc
 http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
   
    <context:annotation-config />
 
 <!--aop support-->
    <aop:aspectj-autoproxy/>
   
    <!--hibernate、数据库配置-->
    <import resource="application-datasource.xml"/>

 <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
        <property name="dataSource" ref="dataSource"/>
        <property name="configLocation" value="classpath:config/hibernate.cfg.xml"/>
        <property name="namingStrategy">
            <bean class="org.hibernate.cfg.ImprovedNamingStrategy" />
 </property>
    </bean>
   
    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource">
            <ref bean="dataSource"/>
        </property>
    </bean>
    <!-- hibernate配置结束 -->
 
 <!-- 声明性事务配置 -->
    <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory" ref="sessionFactory"/>
    </bean>

    <tx:annotation-driven transaction-manager="transactionManager"/>
   
    <tx:advice id="baseServiceAdvice" transaction-manager="transactionManager">
        <tx:attributes>
            <tx:method name="getDao" propagation="NOT_SUPPORTED"/>
            <tx:method name="getJdbcTemplate" propagation="NOT_SUPPORTED"/>
            <tx:method name="getHDao" propagation="NOT_SUPPORTED"/>
            <tx:method name="getHibernateDao" propagation="NOT_SUPPORTED"/>
            <tx:method name="getHibernateTemplate" propagation="NOT_SUPPORTED"/>
            <tx:method name="getModelClass" propagation="NOT_SUPPORTED"/>
            <tx:method name="get*" read-only="true" propagation="REQUIRED"/>
            <tx:method name="find*" read-only="true" propagation="REQUIRED"/>
            <tx:method name="save*" propagation="REQUIRED"/>
            <tx:method name="update*" propagation="REQUIRED"/>
            <tx:method name="remove*" propagation="REQUIRED"/>
            <tx:method name="add*" propagation="REQUIRED"/>
           
            <tx:method name="*"/>
        </tx:attributes>
    </tx:advice>
   
    <aop:config>
        <aop:pointcut id="baseServiceTxOperation" expression="execution(* com.hisun.mvc.service..*.*(..))"/>
        <aop:advisor pointcut-ref="baseServiceTxOperation" advice-ref="baseServiceAdvice"/>
    </aop:config>
   
    <!-- 声明性事务配置结束 -->
 
    <!-- 使用annotation 扫描机制注册bean -->
    <context:component-scan base-package="com.hisun.**">
        <context:exclude-filter expression="org.springframework.stereotype.Controller" type="annotation" />
    </context:component-scan>

 </beans>



Spring使用 <tx:advice>和 <aop:config> 用来配置事务,具体如何配置你可以参考Spring文档。

我解释一下execution(* com.hisun.mvc.service..*.*(..))"中几个通配符的含义:

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

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

 

<tx:advice/> 有关的设置

这一节里将描述通过 <tx:advice/> 标签来指定不同的事务性设置。默认的 <tx:advice/> 设置如下:

 

  • 事务传播设置是 REQUIRED

  • 隔离级别是 DEFAULT

  • 事务是 读/写

  • 事务超时默认是依赖于事务系统的,或者事务超时没有被支持。

  • 任何 RuntimeException 将触发事务回滚,但是任何 checked Exception 将不触发事务回滚

 

这些默认的设置当然也是可以被改变的。 <tx:advice/><tx:attributes/> 标签里的 <tx:method/> 各种属性设置总结如下:

 

属性 是否需要? 默认值 描述
name  

与事务属性关联的方法名。通配符(*)可以用来指定一批关联到相同的事务属性的方法。 如:'get*''handle*''on*Event'等等。

propagation REQUIRED 事务传播行为
isolation DEFAULT 事务隔离级别
timeout -1 事务超时的时间(以秒为单位)
read-only false 事务是否只读?
rollback-for  

将被触发进行回滚的 Exception(s);以逗号分开。 如:'com.foo.MyBusinessException,ServletException'

no-rollback-for  

被触发进行回滚的 Exception(s);以逗号分开。 如:'com.foo.MyBusinessException

 

分享到:
评论

相关推荐

    Spring声明式事务配置模板2.x

    在声明式事务配置中,我们需要在`&lt;beans&gt;`标签内添加`&lt;tx:annotation-driven&gt;`和`&lt;bean&gt;`标签来实现事务管理。 1. **事务管理器配置**:在`&lt;bean&gt;`标签中,我们通常会定义一个`PlatformTransactionManager`的实现类...

    spring配置事物的5种方式

    这种方式也是基于XML配置,但更简洁,直接在`&lt;bean&gt;`标签内使用`transaction-manager`属性指定事务管理器。 ```xml &lt;bean id="userService" class=...

    spring 事务(6中配置完全降解)

    在`spring`的配置文件中,我们可以定义`&lt;tx:annotation-driven&gt;`或`&lt;tx:advice&gt;`元素来启用事务管理。`&lt;tx:annotation-driven&gt;`主要用于处理类或方法上的@Transactional注解,而`&lt;tx:advice&gt;`则可以配合AOP切面进行...

    Spring_事物的写法

    `&lt;tx:method&gt;`标签用于定义特定方法的事务属性,如传播行为等。 ### 定义切入点(Pointcut)和切面(Advisor) 为了将事务管理应用到特定的服务层方法上,还需要定义切入点和切面。在Spring AOP中,切入点用于指定...

    spring事物管理

    这是最传统的配置方式,通过`&lt;tx:annotation-driven&gt;`或`&lt;tx:advice&gt;`标签来定义事务。在示例代码中,`&lt;bean id="transactionBase"`是一个事务代理工厂,它创建了一个共享的事务代理,所有与`transactionBase`关联...

    spring事物的五种配制方法

    使用`&lt;tx:advice&gt;`和`&lt;aop:config&gt;`等标签。 - **特点**:配置更加直观,易于理解。 - **适用场景**:适合对事务有特殊需求的应用程序,例如需要在运行时动态调整事务配置。 3. **第四种方法:编程式事务管理**:...

    在SSH中使用事物包括SSH的搭建和配置;事物的配置;注释详细

    对于事务管理,可以配置`&lt;tx:annotation-driven/&gt;`来启用基于注解的事务管理,或者使用`&lt;bean&gt;`标签手动配置`PlatformTransactionManager`。 3. **Hibernate** 的配置文件(hibernate.cfg.xml)中,要设定数据库...

    spring-mybatis.rar

    通常选择声明式事务管理,通过`&lt;tx:annotation-driven&gt;`标签开启基于注解的事务管理,并配置事务管理器。 二、Spring中的事务管理 1. 声明式事务管理:通过在Service方法上添加@Transactional注解,Spring会自动...

    struts+hibernate+spring开发文档

    - 删除原有的`hibernate.xml`文件,因为在Spring环境中,Hibernate的配置将通过Spring的配置文件来实现。 - 修改`applicationContext.xml`,增加对`SessionFactory`和`DataSource`的配置,为后续的事物管理做准备...

    Spring中的声明式事物

    - **基于XML的配置**:在`&lt;tx:advice&gt;`标签中定义事务通知,然后通过`&lt;aop:config&gt;`或`&lt;aop:aspect&gt;`将事务通知应用到相应的切点上。 - **基于注解的配置**:使用`@Transactional`注解标记在方法上,表示该方法...

    Spring3.0配置多个事务管理器的方法

    在Spring的XML配置中,可以通过`&lt;qualifier&gt;`标签来设置,而在Java注解配置中,可以通过`@Qualifier`注解来指定。 接下来,具体到配置的步骤,首先需要引入Spring事务管理的命名空间,这可以在XML配置文件中通过`...

    Java SSM service层配置文件

    通过`&lt;property&gt;`标签,我们可以实现依赖的注入。例如,`UserService`可能需要注入一个`UserDao`对象: ```xml &lt;bean id="userService" class="com.example.service.UserService"&gt; &lt;property name="userDao" ref=...

    在SSH框架中加入事务支持

    在Spring 2.0版本中,我们可以使用`&lt;tx:annotation-driven&gt;`标签在配置文件中启用基于注解的事务管理。然后,只需要在需要事务的方法上添加@Transactional注解,Spring会自动管理事务的开始、提交、回滚等操作。 ...

    SSM中事务管理所需的jar包-aspectjweaver

    通常,我们会使用`&lt;tx:annotation-driven&gt;`标签来激活基于注解的事务管理,并通过`&lt;aop:aspectj-autoproxy&gt;`启用AOP代理。 5. **事务注解**:在业务层(Service层)的方法上,我们可以使用如`@Transactional`注解来...

Global site tag (gtag.js) - Google Analytics