Spring全注解开发---声明式事务模块
Posted 大忽悠爱忽悠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring全注解开发---声明式事务模块相关的知识,希望对你有一定的参考价值。
声明式事务模块
环境准备
相关依赖导入
<!--导入spring的依赖-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.0.15.RELEASE</version>
</dependency>
<!--mysql驱动的坐标-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.32</version>
</dependency>
<!--c3p0数据库连接池的坐标-->
<dependency>
<groupId>c3p0</groupId>
<artifactId>c3p0</artifactId>
<version>0.9.1.2</version>
</dependency>
<!--druid数据库连接池坐标-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.10</version>
</dependency>
<!--spring jdbc的坐标-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.0.5.RELEASE</version>
</dependency>
<!--spring tx的坐标-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>5.0.5.RELEASE</version>
</dependency>
配置类中注入相关的组件
@EnableTransactionManagement开启基于注解的事务管理功能
配置事务管理器来管理事务
Spring对@Configuration类会特殊处理,给容器中加组件的方法,多次调用都只是从容器中找组件
@EnableTransactionManagement//开启基于注解的事务管理功能
@ComponentScan("com.service")
@Configuration
public class MyConfig
{
@Bean
public DataSource dataSource() throws PropertyVetoException {
ComboPooledDataSource dataSource=new ComboPooledDataSource();
dataSource.setUser("root");
System.out.println(dataSource.getUser());
dataSource.setPassword("126433");
dataSource.setJdbcUrl("jdbc:mysql://localhost:3306/tx");
dataSource.setDriverClass("com.mysql.jdbc.Driver");
return dataSource;
}
@Bean
public JdbcTemplate jdbcTemplate() throws PropertyVetoException
{
//Spring对@Configuration类会特殊处理,给容器中加组件的方法,多次调用都只是从容器中找组件
JdbcTemplate jdbcTemplate=new JdbcTemplate(dataSource());
return jdbcTemplate;
}
//配置事务管理器来管理事务
@Bean //注册事务管理器注册在容器中
public PlatformTransactionManager platformTransactionManager() throws PropertyVetoException
{
//让事务管理器控制数据源
return new DataSourceTransactionManager(dataSource()) {};
}
}
执行sql的类,也是需要事务管理的类
给方法上标注@Transactional标注该方法是一个事务方法
@Repository
public class departService
{
@Autowired
private JdbcTemplate jdbcTemplate;
@Transactional //给方法上标注@Transactional标注该方法是一个事务方法
public void insert()
{
String sql="insert into department values(?,?)";
jdbcTemplate.update(sql,6,"火星部");
}
}
声明式事务全注解开发的三部曲
1.@EnableTransactionManagement开启基于注解的事务管理功能
2.给方法上标注@Transactional标注该方法是一个事务方法
3.配置事务管理器来管理事务
源码分析
1)、@EnableTransactionManagement
利用TransactionManagementConfigurationSelector给容器中会导入组件
导入两个组件
AutoProxyRegistrar
ProxyTransactionManagementConfiguration
2)、AutoProxyRegistrar:
给容器中注册一个 InfrastructureAdvisorAutoProxyCreator 组件;基本的动态代理创建器
InfrastructureAdvisorAutoProxyCreator:?
利用后置处理器机制在对象创建以后,包装对象,返回一个代理对象(增强器),代理对象执行方法利用拦截器链进行调用;
3)、ProxyTransactionManagementConfiguration 做了什么?
1、给容器中注册事务增强器;
1)、事务增强器要用事务注解的信息,AnnotationTransactionAttributeSource解析事务注解
2)、事务拦截器:
TransactionInterceptor;保存了事务属性信息,事务管理器;
他是一个 MethodInterceptor;
在目标方法执行的时候;
执行拦截器链;
事务拦截器:
1)、先获取事务相关的属性
2)、再获取PlatformTransactionManager,如果事先没有添加指定任何transactionmanger
最终会从容器中按照类型获取一个PlatformTransactionManager;
3)、执行目标方法
如果异常,获取到事务管理器,利用事务管理回滚操作;
如果正常,利用事务管理器,提交事务
上面提到的TransactionInterceptor事件拦截器:
对应org.springframework.transaction.interceptor.TransactionAspectSupport#invokeWithinTransaction方法:
总结
当我们给对应方法加上事务注解标注后,在ioc容器启动后,会创建对应加了事务注解的方法的增强的代理对象。
当事务执行时,会通过事务拦截器,来判断是否需要回滚数据
以上是关于Spring全注解开发---声明式事务模块的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot 中使用 @Transactional 注解配置事务管理
Spring Boot 中使用 @Transactional 注解配置事务管理
Spring Boot 中使用 @Transactional 注解配置事务管理
Spring第三天:Spring的AOP的注解开发Spring的声明式事务JdbcTemplate