Spring中怎么使用事务呢

来源:互联网  时间:2016/7/1 18:00:46

关于网友提出的“ Spring中怎么使用事务呢”问题疑问,本网通过在网上对“ Spring中怎么使用事务呢”有关的相关答案进行了整理,供用户进行参考,详细问题解答如下:

问题: Spring中怎么使用事务呢
描述:

Spring中怎么使用事务呢


解决方案1:

如果你是刚开始学的话可以下载尚学堂或者浪曦的视频,都讲得很好,没时间的话就查看Spring的api文档也行(这个难度挺高的,我只是看的一知半解)
以下是我自己一个学习项目的代码,希望对大家有所帮助.




xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:c>使用ProxyFactoryBean 和TransactionInterceptor












<>
class="org.springframework.transaction.interceptor.TransactionInterceptor">





PROPAGATION_REQUIRED
PROPAGATION_REQUIRED
PROPAGATION_REQUIRED
PROPAGATION_SUPPORTS,readOnly
PROPAGATION_SUPPORTS,readOnly
PROPAGATION_SUPPORTS,readOnly




<>
class="com.prs.application.ehld.sample.biz.service.impl.SampleServiceImpl">
<>
ref="com.prs.application.ehld.sample.integration.dao.userInfoDAO">




<>
ref="com.prs.application.ehld.sample.biz.service.sampleService.target">


transactionInterceptor



搞错了,呵呵
http://blog.csdn.net/sghys/article/details/1916278 解决方案3:

Spring一般用来管理数据库的事物
http://blog.csdn.net/luohuijun619/article/details/4988679
百度上很多用法,Lz要学会使用网络资源

解决方案4:



xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd 
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">







<>


expression="execution(*
com.feng.aop.UserServerImpl.del*(..))" />


<>
expression="execution(* com.feng.aop.UserServerImpl.query*(..))" />





上一篇tomcat配置后出现The requested resource /host-manager/ is not available,望高手们解疑!
下一篇有人用过DOJO没,怎么用
明星图片
相关文章
《 Spring中怎么使用事务呢》由码蚁之家搜集整理于网络,
联系邮箱:mxgf168#qq.com(#改为@)