spring的事务控制可以分为编程式事务控制和声明式事务控制。
编程式
开发者直接把事务的代码和业务代码耦合到一起,在实际开发中不用。
声明式
开发者采用配置的方式来实现的事务控制,业务代码与事务代码实现解耦合,使用的aop思想。
platformtransactionmanager接口,是spring的事务管理器接口,里面提供了我们常用的操作事务的方法。
transactiondefinition接口提供事务的定义信息(事务隔离级别、事务传播行为等等)
(1)事务隔离级别
设置隔离级别,可以解决事务并发产生的问题,如脏读、不可重复读和虚读(幻读)。
注意:使用数据库默认级别,如果数据库是mysql,则默认是可重复读,oracle是读已提交。
isolation_default
使用数据库默认级别
isolation_read_uncommitted
读未提交
isolation_read_committed
读已提交(可解决脏读问题)
isolation_repeatable_read
可重复读 (可解决脏读、不可重复读)
isolation_rializable
串行化
可解决:
(2)事务传播行为
事务传播行为指的就是当一个业务方法【被】另一个业务方法调用时,应该如何进行事务控制。
重点:
read-only
(是否只读):建议查询时设置为只读timeout
(超时时间):默认值是-1,没有超时限制。如果有,以秒为单位进行设置
transactionstatus 接口提供的是事务具体的运行状态。
可以简单的理解三者的关系:事务管理器通过读取事务定义参数进行事务管理,然后会产生一系列的事务状态。
spring中的事务控制主要就是通过这三个api实现的
platformtransactionmanager
负责事务的管理,它是个接口,其子类负责具体工作
transactiondefinition
定义了事务的一些相关参数
transactionstatus
代表事务运行的一个实时状态
理解三者的关系:事务管理器通过读取事务定义参数进行事务管理,然后会产生一系列的事务状态。
在spring配置文件中声明式的处理事务来代替代码式的处理事务。底层采用aop思想来实现。
声明式事务控制明确事项:
核心业务代码(目标对象) (切入点是谁?)
事务增强代码(spring已提供事务管理器))(通知是谁?)
切面配置(切面如何配置?)(切面 = 切入点 + 通知)
使用spring声明式事务控制转账业务。
步骤:
1.引入tx命名空间
2.事务管理器通知配置
3.事务管理器aop配置
4.测试事务控制转账业务代码
<?xml version="1.0" encoding="utf-8"?><beans xmlns="/d/file/titlepic/" xmlns:xsi="/d/file/titlepic/xmlschema-instance" xmlns:context="/d/file/titlepic/" xmlns:tx="/d/file/titlepic/" xmlns:aop="/d/file/titlepic/" xsi:schemalocation=" http://w心里的花ww.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context.xsdhttp://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx.xsdhttp://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop.xsd">
<!--事务管理器对象--> <!--<bean id="transactionmanager" class="org.springframework.jdbc.datasource.datasourcetransactionmanager"> <property name="datasource" ref="datasource"/> </bean>--> // 通知增强 <tx:advice id="txadvice" transaction-manager="transactionmanager"> //定义事务的一些属性 * 表示当前任意名称的方法都走默认配置 <!-- name: 切点方法名称 isolation:事务的隔离级别 学计算机有前途吗 propagation:事务的传播行为 read-only:是否只读 timeout:超时时间 --> <tx:attributes> <tx:method name="transfer" isolation="repeatable_read" propagation="required" read-only="fal" timeout="-1"/> //crud常用配置 <tx:method name="save*" propagation="required"/> <tx:method name="delete*" propagation="required"/> <tx:method name="update*" propagation="required"/> <tx:method name="find*" read-only="true"/> <tx:method name="*"/> </tx:attributes> </tx:advice>
当使用spring声明式管理事务,要使用aop:advisor来进行aop的配置!
//aop配置:配置切面 <a八道杠op:config> <aop:advisor advice-ref="txadvice" pointcut="execution(* com.lagou.rvlet.impl.accountrviceimpl.*(..))"/> </aop:config>-->
事务参数的配置详解:
<tx:method name=“transfer” isolation=“repeatable_read” propagation=“required”timeout=”-1″ read-only=“fal”/>
name
:切点方法名称isolation
:事务的隔离级别propogation
:事务的传播行为timeout
:超时时间read-only
:是否只读步骤:
修改rvice层,增加事务注解修改spring核心配置文件,开启事务注解支持@rvicepublic class accountrviceimpl implements accountrvice { @autowired private accountdao accountdao; @transactional(propagation = propagation.required, isolation =isolation.repeatable_read, timeout = -1, readonly = fal) @override public void transfer(string outur, string inur, double money) { accountdao.out(outur, money); int i = 1 / 0; accountdao.in(inur, money); }}
<?xml version="1.0" encoding="utf-8"?><beans xmlns="/d/file/titlepic/" xmlns:xsi="http://www.w2.org/2001/xmlschema-instance" xmlns:context="/d/file/titlepic/" xmlns:aop="/d/file/titlepic/" xmlns:tx="/d/file/titlepic/" xsi:schemalocation=" http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx.xsd"> <!--省略之前datssource、jdbctemplate、组件扫描配置--> <!--事务管理器--> <bean id="transactionmanager"class="org.springframework.jdbc.datasource.datasourcetransactionmanager"> <property name="datasource" ref="datasource"></property> </bean> <!--事务的注解支持--> <tx:annotation-driven/></beans
核心配置类:
@configuration // 声明该类为核心配置类@componentscan("com.lagou") // 包扫描@import(datasourceconfig.class) //导入其他配置类@enabletransactionmanagement //事务的注解驱动public class springconfig { @bean public jdbctemplate getjdbctemplate(@autowired datasource datasource){ jdbctemplate jdbctemplate = new jdbctemplate(datasource); return jdbctemplate; } @bean public platformtransactionmanager getplatformtransactionmanager(@autowired datasource datasource){ datasourcetransactionmanager datasourcetransactionmanager = new datasourcetransactionmanager(datasource); return datasourcetransactionmanager; }}
数据源配置类:
@propertysource("classpath:jdbc.properties") //引入properties文件public class datasourceconfig { @value("${jdbc.driverclassname}") private string driver; @value("${jdbc.url}") private string url; @value("${jdbc.urname}") private string urname; @value("${jdbc.password}") private string password; @bean //会把当前方法的返回值对象放进ioc容器中 public datasource getdatasource(){ druiddatasource druiddatasource = new druiddatasource(); druiddatasource.tdriverclassname(driver); druiddatasource.turl(url); 德隆 威廉姆斯 druiddatasource.turname(urname); druiddatasource.tpassword(password); return druiddatasource; }}
知识小结:
平台事务管理器配置(xml、注解方式)事务通知的配置(@transactional注解配置)事务注解驱动的配置 <tx:annotation-driven/>、@enabletransactionmanagement本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注www.887551.com的更多内容!
本文发布于:2023-04-06 04:00:33,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/4c90405a38f29e83c381cba9884231e7.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:Java Spring的两种事务你知道吗.doc
本文 PDF 下载地址:Java Spring的两种事务你知道吗.pdf
留言与评论(共有 0 条评论) |