spring事务管理
程序员文章站
2022-05-23 14:59:41
...
[align=center][size=xx-large][color=red][b]spring管理事务提交[/b][/color][/size][/align]
[url]http://blog.csdn.net/huangbiao86/article/details/6588780[/url]
参考:
1.[url]http://blog.csdn.net/qjyong/article/details/4824179[/url]
2.[url]http://www.blogjava.net/robbie/archive/2009/04/05/264003.html[/url]
[url]http://blog.csdn.net/huangbiao86/article/details/6588780[/url]
修改applicationContext.xml加入事务管理
<?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: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/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/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
">
<!-- 事务管理 -->
<!-- 定义一个事务管理器 -->
<bean id="myHibTransactionManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" >
</property>
</bean>
<!--定义事务通知-->
<tx:advice id="txAdvice" transaction-manager="myHibTransactionManager">
<!--声明事务规则-->
<tx:attributes>
<tx:method name="save*" propagation="REQUIRED"/>
<tx:method name="add*" propagation="REQUIRED"/>
<tx:method name="insert*" propagation="REQUIRED"/>
<tx:method name="update*" propagation="REQUIRED"/>
<tx:method name="del*" propagation="REQUIRED"/>
<!--对其他方法要求只读事务-->
<tx:method name="*" propagation="SUPPORTS" read-only="true"/>
</tx:attributes>
</tx:advice>
<aop:config>
<!--定义一个切面,即定义哪些方法应用这些规则-->
<aop:pointcut id="bizMethods" expression="execution(* com.accp.ke.biz.*.*(..))"/>
<!--将事务通知和切面组合(织入)-->
<aop:advisor advice-ref="txAdvice" pointcut-ref="bizMethods"/>
</aop:config>
修改struts-config.xml配置文件,使用代理action类
type="org.springframework.web.struts.DelegatingActionProxy"
<plug-in className="org.springframework.web.struts.ContextLoaderPlugIn">
<set-property property="contextConfigLocation" value="classpath:applicationContext.xml"/>
</plug-in>
参考:
1.[url]http://blog.csdn.net/qjyong/article/details/4824179[/url]
2.[url]http://www.blogjava.net/robbie/archive/2009/04/05/264003.html[/url]
上一篇: 【随笔】设计模式-工厂模式
推荐阅读
-
spring为java.util.Properties类型的属性进行赋值过程解析
-
Spring AOP定义AfterReturning增加实例分析
-
spring级联属性赋值的两种方式解析
-
spring如何使用命名空间p简化bean的配置
-
JSP Spring防止用户重复登录的实现方法
-
JSP 开发之Spring Boot 动态创建Bean
-
spring5 源码深度解析----- 被面试官给虐懵了,竟然是因为我不懂@Configuration配置类及@Bean的原理
-
Spring Cloud Ribbon实现客户端负载均衡的示例
-
Spring Boot打war包的实例教程
-
spring boot 添加admin监控的方法