基于XML配置的声明式事务

虽然基于XML配置的方式逐渐“过时”,大家参与的项目可能以注解驱动的较多。
但是个人认为:
基于XML配置的Spring,似乎更能体现并透露出Spring的设计理念和实现方式。
某种程度上会帮助开放者理解Spring的实现,特别是想研究源码实现的时候。
.
本文就完全只关注基于XML的,声明式事务的配置。
在Spring事务的学习道路上,以最小化目标去实践,理解,可能是个和Spring这个庞然大物不错的相处方式。

AOP基础认知

基础但是重要的认知
Spring的声明式事务是基于AOP的,所以应用配置里事务相关配置其实就是符合AOP要求的配置。

一个常规AOP的拦截操作,需要向容器中提供一个切点类型的Advisor(可用看做Advice+Pointcut)
Advice: 拦截器,用于定义AOP的切面逻辑
Pointcut: 用于定义切面匹配的方式

上述AOP概念映射到Spring事务配置,其实就是
Advisor: 可以通过 <aop:config> 标签来向容器中配置 Advisor
Advice: TransactionInterceptor.class,可用通过 <tx:advice> 标签将该Advice配置进容器
Pointcut: 常规的,定义一个表达式

主要应用配置

特别关注一下<tx:advice><tx:advice>

<?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:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">

    <!-- 加载jdbc.properties文件 -->
    <context:property-placeholder location="classpath:application.properties"/>

    <!-- 配置连接池 -->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="driverClass" value="${spring.datasource.current.driver-class-name}"></property>
        <property name="jdbcUrl" value="${spring.datasource.current.jdbc-url}"></property>
        <property name="user" value="${spring.datasource.current.username}"></property>
        <property name="password" value="${spring.datasource.current.password}"></property>
    </bean>

    <!-- 配置事务核心管理器,封装了所有的事务操作,依赖于连接池 -->
    <bean id="transactionManager"
          class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"></property>
    </bean>

    <!-- 配置jdbc模板对象,这里直接使用Spring提供的模板,就不引入Mybatis了,比较这里主要关注的是 Spring 声明式事务的本质!!! -->
    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource" ref="dataSource"></property>
    </bean>

    <bean id="userService" class="UserServiceImpl">
        <property name="jdbcTemplate" ref="jdbcTemplate"></property>
    </bean>

    <!--  配置事务处理的拦截器  -->
    <tx:advice id="transactionAdvice">
        <!--  指定不同方法的事务处理策略  -->
        <tx:attributes>
            <tx:method name="insertUser"/>
            <tx:method name="*"/>
        </tx:attributes>
    </tx:advice>

    <!-- 配置AOP Advisor -->
    <aop:config>
        <!--  默认拦截 serviceImpl 的方法      -->
        <aop:pointcut id="defaultServiceOperation" expression="execution(* *ServiceImpl.*(..))"/>
        <aop:advisor pointcut-ref="defaultServiceOperation" advice-ref="transactionAdvice"/>
    </aop:config>
</beans>

应用逻辑

仅关注 Spring 事务的逻辑

// 接口
public interface UserService {
    void insertUser();

}

// 实现类
public class UserServiceImpl implements UserService{
    // 使用JdbcTemplate操作数据库
    private JdbcTemplate jdbcTemplate;

    // 操作数据库的方法
    public void insertUser() {

        jdbcTemplate.execute("INSERT INTO `task`.`t_user`( `name`) VALUES ('primary');");

        // 模拟异常,抛出异常,事务配置正常的话,对数据库的插入操作会回滚的
        if (true) {
            throw new RuntimeException("执行异常");
        }
    }

    public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {
        this.jdbcTemplate = jdbcTemplate;
    }
}

// 测试类
public class TransactionTestMain {

    public static void main(String[] args) {
        ClassPathXmlApplicationContext applicationContext = new ClassPathXmlApplicationContext("application.xml");

        UserService bean = applicationContext.getBean(UserService.class);

        bean.insertUser();
    }
}

项目地址

项目供参考,具体代码在module tx_declare_with_xml
github

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值