java系统找不到指定文件怎么解决
215
2022-10-21
Java Spring的两种事务你知道吗
目录1.Spring中的事务控制方式2.编程式事务控制相关对象2.1PlatformTransactionManager2.2TransactionDefinition2.3TransactionStatus3.基于XML的声明式事务控制【重点】3.1快速入门(1)引入tx命名空间(2)事务管理器通知配置(3)事务管理器AOP配置 4.基于注解的声明式事务控制(重点)4.1修改service层,增加事务注解4.2修改spring核心配置文件,开启事务注解支持4.3纯注解方式总结
1. Spring中的事务控制方式
Spring的事务控制可以分为编程式事务控制和声明式事务控制。
编程式
开发者直接把事务的代码和业务代码耦合到一起,在实际开发中不用。
声明式
开发者采用配置的方式来实现的事务控制,业务代码与事务代码实现解耦合,使用的AOP思想。
2.编程式事务控制相关对象
2.1PlatformTransactionManager
PlatformTransactionManager接口,是spring的事务管理器接口,里面提供了我们常用的操作事务的方法。
2.2TransactionDefinition
TransactionDefinition接口提供事务的定义信息(事务隔离级别、事务传播行为等等)
(1)事务隔离级别
设置隔离级别,可以解决事务并发产生的问题,如脏读、不可重复读和虚读(幻读)。
注意:使用数据库默认级别,如果数据库是mysql,则默认是可重复读,oracle是读已提交。
ISOLATION_DEFAULT 使用数据库默认级别
ISOLATION_READ_UNCOMMITTED 读未提交
ISOLATION_READ_COMMITTED 读已提交(可解决脏读问题)
ISOLATION_REPEATABLE_READ 可重复读 (可解决脏读、不可重复读)
ISOLATION_SERIALIZABLE 串行化
可解决:
(2)事务传播行为
事务传播行为指的就是当一个业务方法【被】另一个业务方法调用时,应该如何进行事务控制。
重点:
read-only(是否只读):建议查询时设置为只读timeout(超时时间):默认值是-1,没有超时限制。如果有,以秒为单位进行设置
2.3 TransactionStatus
TransactionStatus 接口提供的是事务具体的运行状态。
可以简单的理解三者的关系:事务管理器通过读取事务定义参数进行事务管理,然后会产生一系列的事务状态。
Spring中的事务控制主要就是通过这三个API实现的
PlatformTransactionManager 负责事务的管理,它是个接口,其子类负责具体工作
TransactionDefinition 定义了事务的一些相关参数
TransactionStatus 代表事务运行的一个实时状态
理解三者的关系:事务管理器通过读取事务定义参数进行事务管理,然后会产生一系列的事务状态。
3.基于XML的声明式事务控制【重点】
在Spring配置文件中声明式的处理事务来代替代码式的处理事务。底层采用AOP思想来实现。
声明式事务控制明确事项:
核心业务代码(目标对象) (切入点是谁?)
事务增强代码(Spring已提供事务管理器))(通知是谁?)
切面配置(切面如何配置?)(切面 = 切入点 + 通知)
3.1快速入门
使用spring声明式事务控制转账业务。
步骤:
1.引入tx命名空间
2.事务管理器通知配置
3.事务管理器AOP配置
4.测试事务控制转账业务代码
(1)引入tx命名空间
xmlns:xsi="http://w3.org/2001/XMLSchema-instance" xmlns:context="http://springframework.org/schema/context" xmlns:tx="http://springframework.org/schema/tx" xmlns:aop="http://springframework.org/schema/aop" xsi:schemaLocation=" http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans.xsd http://springframework.org/schema/context http://springframework.org/schema/context/spring-context.xsd http://springframework.org/schema/tx http://springframework.org/schema/tx/spring-tx.xsd http://springframework.org/schema/aop http://springframework.org/schema/aop/spring-aop.xsd "> (2)事务管理器通知配置 // 通知增强 //定义事务的一些属性 * 表示当前任意名称的方法都走默认配置 //CRUD常用配置 (3)事务管理器AOP配置 当使用spring声明式管理事务,要使用aop:advisor来进行aop的配置! //aop配置:配置切面 --> 事务参数的配置详解: name:切点方法名称isolation:事务的隔离级别propogation:事务的传播行为timeout:超时时间read-only:是否只读 4.基于注解的声明式事务控制(重点) 步骤: 修改service层,增加事务注解修改spring核心配置文件,开启事务注解支持 4.1 修改service层,增加事务注解 @Service public class AccountServiceImpl implements AccountService { @Autowired private AccountDao accountDao; @Transactional(propagation = Propagation.REQUIRED, isolation = Isolation.REPEATABLE_READ, timeout = -1, readOnly = false) @Override public void transfer(String outUser, String inUser, Double money) { accountDao.out(outUser, money); int i = 1 / 0; accountDao.in(inUser, money); } } 4.2修改spring核心配置文件,开启事务注解支持 xmlns:xsi="http://w2.org/2001/XMLSchema-instance" xmlns:context="http://springframework.org/schema/context" xmlns:aop="http://springframework.org/schema/aop" xmlns:tx="http://springframework.org/schema/tx" xsi:schemaLocation=" http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans.xsd http://springframework.org/schema/context http://springframework.org/schema/context/spring-context.xsd http://springframework.org/schema/aop http://springframework.org/schema/aop/spring-aop.xsd http://springframework.org/schema/tx http://springframework.org/schema/tx/spring-tx.xsdhttp://"> class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> 4.3纯注解方式 核心配置类: @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(@Authttp://owired 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.username}") private String username; @Value("${jdbc.password}") private String password; @Bean //会把当前方法的返回值对象放进IOC容器中 public DataSource getDataSource(){ DruidDataSource druidDataSource = new DruidDataSource(); druidDataSource.setDriverClassName(driver); druidDataSource.setUrl(url); druidDataSource.setUsername(username); druidDataSource.setPassword(password); return druidDataSource; } } 知识小结: 平台事务管理器配置(xml、注解方式)事务通知的配置(@Transactional注解配置)事务注解驱动的配置 总结 本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注我们的更多内容!
xmlns:xsi="http://w3.org/2001/XMLSchema-instance"
xmlns:context="http://springframework.org/schema/context"
xmlns:tx="http://springframework.org/schema/tx"
xmlns:aop="http://springframework.org/schema/aop"
xsi:schemaLocation="
http://springframework.org/schema/beans
http://springframework.org/schema/beans/spring-beans.xsd
http://springframework.org/schema/context
http://springframework.org/schema/context/spring-context.xsd
http://springframework.org/schema/tx
http://springframework.org/schema/tx/spring-tx.xsd
http://springframework.org/schema/aop
http://springframework.org/schema/aop/spring-aop.xsd
">
(2)事务管理器通知配置
// 通知增强
//定义事务的一些属性 * 表示当前任意名称的方法都走默认配置
//CRUD常用配置
(3)事务管理器AOP配置
当使用spring声明式管理事务,要使用aop:advisor来进行aop的配置!
//aop配置:配置切面
-->
事务参数的配置详解:
name:切点方法名称isolation:事务的隔离级别propogation:事务的传播行为timeout:超时时间read-only:是否只读
4.基于注解的声明式事务控制(重点)
步骤:
修改service层,增加事务注解修改spring核心配置文件,开启事务注解支持
4.1 修改service层,增加事务注解
@Service
public class AccountServiceImpl implements AccountService {
@Autowired
private AccountDao accountDao;
@Transactional(propagation = Propagation.REQUIRED, isolation =
Isolation.REPEATABLE_READ, timeout = -1, readOnly = false)
@Override
public void transfer(String outUser, String inUser, Double money) {
accountDao.out(outUser, money);
int i = 1 / 0;
accountDao.in(inUser, money);
}
}
4.2修改spring核心配置文件,开启事务注解支持
xmlns:xsi="http://w2.org/2001/XMLSchema-instance" xmlns:context="http://springframework.org/schema/context" xmlns:aop="http://springframework.org/schema/aop" xmlns:tx="http://springframework.org/schema/tx" xsi:schemaLocation=" http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans.xsd http://springframework.org/schema/context http://springframework.org/schema/context/spring-context.xsd http://springframework.org/schema/aop http://springframework.org/schema/aop/spring-aop.xsd http://springframework.org/schema/tx http://springframework.org/schema/tx/spring-tx.xsdhttp://"> class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
xmlns:xsi="http://w2.org/2001/XMLSchema-instance"
xmlns:context="http://springframework.org/schema/context"
xmlns:aop="http://springframework.org/schema/aop"
xmlns:tx="http://springframework.org/schema/tx"
xsi:schemaLocation="
http://springframework.org/schema/beans
http://springframework.org/schema/beans/spring-beans.xsd
http://springframework.org/schema/context
http://springframework.org/schema/context/spring-context.xsd
http://springframework.org/schema/aop
http://springframework.org/schema/aop/spring-aop.xsd
http://springframework.org/schema/tx
http://springframework.org/schema/tx/spring-tx.xsdhttp://">
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
4.3纯注解方式
核心配置类:
@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(@Authttp://owired 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.username}")
private String username;
@Value("${jdbc.password}")
private String password;
@Bean //会把当前方法的返回值对象放进IOC容器中
public DataSource getDataSource(){
DruidDataSource druidDataSource = new DruidDataSource();
druidDataSource.setDriverClassName(driver);
druidDataSource.setUrl(url);
druidDataSource.setUsername(username);
druidDataSource.setPassword(password);
return druidDataSource;
}
}
知识小结:
平台事务管理器配置(xml、注解方式)事务通知的配置(@Transactional注解配置)事务注解驱动的配置
总结
本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注我们的更多内容!
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~