Spring管理事务配置的五种方式
作者:网络转载 发布时间:[ 2017/4/7 15:58:39 ] 推荐标签:软件测试管理 配置管理 事务
第四种:使用tx标签配置的拦截器:
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xmlns:context="http://www.springframework.org/schema/context"
5 xmlns:aop="http://www.springframework.org/schema/aop"
6 xmlns:tx="http://www.springframework.org/schema/tx"
7 xsi:schemaLocation="http://www.springframework.org/schema/beans
8 http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
9 http://www.springframework.org/schema/context
10 http://www.springframework.org/schema/context/spring-context-2.5.xsd
11 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
12 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
13 <!-- 数据源 -->
14 <bean id="dataSource"
15 class="org.apache.commons.dbcp.BasicDataSource"
16 destroy-method="close">
17 <property name="driverClassName" value="com.mysql.jdbc.Driver" />
18 <property name="url"
19 value="jdbc:mysql://192.168.0.244:3306/test?useUnicode=true&characterEncoding=UTF-8" />
20 <property name="username" value="root" />
21 <property name="password" value="root" />
22 <!-- 连接池启动时的初始值 -->
23 <property name="initialSize" value="10" />
24 <!-- 连接池的大值 -->
25 <property name="maxActive" value="10" />
26 <!-- 大空闲值.当经过一个高峰时间后,连接池可以慢慢将已经用不到的连接慢慢释放一部分,一直减少到maxIdle为止 -->
27 <property name="maxIdle" value="20" />
28 <!-- 小空闲值.当空闲的连接数少于阀值时,连接池会预申请去一些连接,以免洪峰来时来不及申请 -->
29 <property name="minIdle" value="10" />
30 <property name="defaultAutoCommit" value="true" />
31 </bean>
32 <!-- 会话工厂 -->
33 <bean id="sessionFactory"
34 class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
35 <property name="dataSource" ref="dataSource" />
36 <property name="mappingLocations">
37 <list>
38 <value>classpath:/com/nms/entity/**/*.hbm.xml</value>
39 </list>
40 </property>
41 <property name="hibernateProperties">
42 <props>
43 <prop key="hibernate.dialect">
44 org.hibernate.dialect.MySQL5Dialect
45 </prop>
46 <prop key="hibernate.show_sql">true</prop>
47 <prop key="hibernate.format_sql">true</prop>
48 </props>
49 </property>
50 </bean>
51 <context:annotation-config />
52 <context:component-scan base-package="com.dao" />
53 <!-- 定义事务管理器 -->
54 <bean id="transactionManager"
55 class="org.springframework.orm.hibernate3.HibernateTransactionManager">
56 <property name="sessionFactory" ref="sessionFactory" />
57 </bean>
58 <!-- 定义事务 -->
59 <tx:advice id="txAdvice" transaction-manager="transactionManager">
60 <tx:attributes>
61 <tx:method name="*" propagation="REQUIRED" />
62 </tx:attributes>
63 </tx:advice>
64 <!-- 定义切面 -->
65 <aop:config>
66 <aop:pointcut id="interceptorPointCuts" expression="execution(* com.dao.*.*(..))" />
67 <aop:advisor advice-ref="txAdvice" pointcut-ref="interceptorPointCuts" />
68 </aop:config>
69 </beans>
第五种:注解:
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xmlns:context="http://www.springframework.org/schema/context"
5 xmlns:aop="http://www.springframework.org/schema/aop"
6 xmlns:tx="http://www.springframework.org/schema/tx"
7 xsi:schemaLocation="http://www.springframework.org/schema/beans
8 http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
9 http://www.springframework.org/schema/context
10 http://www.springframework.org/schema/context/spring-context-2.5.xsd
11 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
12 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
13 <!-- 数据源 -->
14 <bean id="dataSource"
15 class="org.apache.commons.dbcp.BasicDataSource"
16 destroy-method="close">
17 <property name="driverClassName" value="com.mysql.jdbc.Driver" />
18 <property name="url"
19 value="jdbc:mysql://192.168.0.244:3306/test?useUnicode=true&characterEncoding=UTF-8" />
20 <property name="username" value="root" />
21 <property name="password" value="root" />
22 <!-- 连接池启动时的初始值 -->
23 <property name="initialSize" value="10" />
24 <!-- 连接池的大值 -->
25 <property name="maxActive" value="10" />
26 <!-- 大空闲值.当经过一个高峰时间后,连接池可以慢慢将已经用不到的连接慢慢释放一部分,一直减少到maxIdle为止 -->
27 <property name="maxIdle" value="20" />
28 <!-- 小空闲值.当空闲的连接数少于阀值时,连接池会预申请去一些连接,以免洪峰来时来不及申请 -->
29 <property name="minIdle" value="10" />
30 <property name="defaultAutoCommit" value="true" />
31 </bean>
32 <!-- 会话工厂 -->
33 <bean id="sessionFactory"
34 class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
35 <property name="dataSource" ref="dataSource" />
36 <property name="mappingLocations">
37 <list>
38 <value>classpath:/com/nms/entity/**/*.hbm.xml</value>
39 </list>
40 </property>
41 <property name="hibernateProperties">
42 <props>
43 <prop key="hibernate.dialect">
44 org.hibernate.dialect.MySQL5Dialect
45 </prop>
46 <prop key="hibernate.show_sql">true</prop>
47 <prop key="hibernate.format_sql">true</prop>
48 </props>
49 </property>
50 </bean>
51 <context:annotation-config />
52 <!-- 使用注解的包路径 -->
53 <context:component-scan base-package="com.dao" />
54 <!-- 支持 @Transactional 标记 -->
55 <tx:annotation-driven transaction-manager="transactionManager"/>
56 <!-- 定义事务管理器 -->
57 <bean id="transactionManager"
58 class="org.springframework.orm.hibernate3.HibernateTransactionManager">
59 <property name="sessionFactory" ref="sessionFactory" />
60 </bean>
61 </beans>
如果使用了注解,那么实现类应该这样写:
1 package com.dao.impl;
2 import org.springframework.orm.hibernate3.support.HibernateDaoSupport;
3 import org.springframework.stereotype.Component;
4 import org.springframework.transaction.annotation.Transactional;
5 import com.dao.UserDao;
6 @Transactional
7 @Component("userDaoAgency")
8 public class UserDaoImpl extends HibernateDaoSupport implements UserDao {
9 /**
10 * 为方法增加事务处理特性
11 */
12 @Transactional(readOnly=true)
13 public void getUser(){
14 }
15 }
这样每个方法都能自己定义自己的事务处理!
本文内容不用于商业目的,如涉及知识产权问题,请权利人联系SPASVO小编(021-61079698-8054),我们将立即处理,马上删除。
相关推荐
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11热门文章
常见的移动App Bug??崩溃的测试用例设计如何用Jmeter做压力测试QC使用说明APP压力测试入门教程移动app测试中的主要问题jenkins+testng+ant+webdriver持续集成测试使用JMeter进行HTTP负载测试Selenium 2.0 WebDriver 使用指南