配置文件如下:
<?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/>
设置如下:
这些默认的设置当然也是可以被改变的。 <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
|
分享到:
相关推荐
在声明式事务配置中,我们需要在`<beans>`标签内添加`<tx:annotation-driven>`和`<bean>`标签来实现事务管理。 1. **事务管理器配置**:在`<bean>`标签中,我们通常会定义一个`PlatformTransactionManager`的实现类...
这种方式也是基于XML配置,但更简洁,直接在`<bean>`标签内使用`transaction-manager`属性指定事务管理器。 ```xml <bean id="userService" class=...
在`spring`的配置文件中,我们可以定义`<tx:annotation-driven>`或`<tx:advice>`元素来启用事务管理。`<tx:annotation-driven>`主要用于处理类或方法上的@Transactional注解,而`<tx:advice>`则可以配合AOP切面进行...
`<tx:method>`标签用于定义特定方法的事务属性,如传播行为等。 ### 定义切入点(Pointcut)和切面(Advisor) 为了将事务管理应用到特定的服务层方法上,还需要定义切入点和切面。在Spring AOP中,切入点用于指定...
这是最传统的配置方式,通过`<tx:annotation-driven>`或`<tx:advice>`标签来定义事务。在示例代码中,`<bean id="transactionBase"`是一个事务代理工厂,它创建了一个共享的事务代理,所有与`transactionBase`关联...
使用`<tx:advice>`和`<aop:config>`等标签。 - **特点**:配置更加直观,易于理解。 - **适用场景**:适合对事务有特殊需求的应用程序,例如需要在运行时动态调整事务配置。 3. **第四种方法:编程式事务管理**:...
对于事务管理,可以配置`<tx:annotation-driven/>`来启用基于注解的事务管理,或者使用`<bean>`标签手动配置`PlatformTransactionManager`。 3. **Hibernate** 的配置文件(hibernate.cfg.xml)中,要设定数据库...
通常选择声明式事务管理,通过`<tx:annotation-driven>`标签开启基于注解的事务管理,并配置事务管理器。 二、Spring中的事务管理 1. 声明式事务管理:通过在Service方法上添加@Transactional注解,Spring会自动...
- 删除原有的`hibernate.xml`文件,因为在Spring环境中,Hibernate的配置将通过Spring的配置文件来实现。 - 修改`applicationContext.xml`,增加对`SessionFactory`和`DataSource`的配置,为后续的事物管理做准备...
- **基于XML的配置**:在`<tx:advice>`标签中定义事务通知,然后通过`<aop:config>`或`<aop:aspect>`将事务通知应用到相应的切点上。 - **基于注解的配置**:使用`@Transactional`注解标记在方法上,表示该方法...
在Spring的XML配置中,可以通过`<qualifier>`标签来设置,而在Java注解配置中,可以通过`@Qualifier`注解来指定。 接下来,具体到配置的步骤,首先需要引入Spring事务管理的命名空间,这可以在XML配置文件中通过`...
通过`<property>`标签,我们可以实现依赖的注入。例如,`UserService`可能需要注入一个`UserDao`对象: ```xml <bean id="userService" class="com.example.service.UserService"> <property name="userDao" ref=...
在Spring 2.0版本中,我们可以使用`<tx:annotation-driven>`标签在配置文件中启用基于注解的事务管理。然后,只需要在需要事务的方法上添加@Transactional注解,Spring会自动管理事务的开始、提交、回滚等操作。 ...
通常,我们会使用`<tx:annotation-driven>`标签来激活基于注解的事务管理,并通过`<aop:aspectj-autoproxy>`启用AOP代理。 5. **事务注解**:在业务层(Service层)的方法上,我们可以使用如`@Transactional`注解来...