Spring入门(四)之AOP事物

Spring入门之AOP事物的实现

一、原理

image.png

因为在业务层中我们会有很多业务方法,比如银行转账业务(从目标:from中扣钱,向目的地:target增加)都需要事物的介入,然而Spring的AOP技术出现后,我们可以很容易的使用环绕通知来解决这一难题(很多业务都需要事物管理,开发者手动添加事物很累!)。

二、实现(xml)

image.png

这里我用模拟银行转账的小程序来实现事物管理

image.png
package cn.zw.tx;

/**
 * 
 * @ClassName:  BankDao   
 * @Description:TODO(模拟银行转账接口)   
 * @date:   2018年12月3日 下午8:21:26   
 */
public interface BankDao {
    
    /**
     * 
     * @Title:  BankDao   
     * @Description:转入
     * @param:  @param target 目标账户
     * @param:  @param money  金额
     * @throws
     */
    void increaseMoney(int target , double money);
    
    /**
     * 
     * @Title:  BankDao   
     * @Description:转出
     * @param:  @param target 目标账户
     * @param:  @param money  金额
     * @throws
     */
    void decreaseMoney(int target ,double money);
}

package cn.zw.tx;

import org.springframework.jdbc.core.support.JdbcDaoSupport;


public class BankDaoImpl extends JdbcDaoSupport implements BankDao {

    
    /**
     * 
     * <p>Title: increaseMoney</p>   
     * <p>Description:转入 </p>   
     * @param target 目标账户
     * @param money  转入金额 
     * @see cn.zw.tx.BankDao#increaseMoney(int, double)
     */
    @Override
    public void increaseMoney(int target, double money) {
        String sql = "update user set money = money + ? where id = ?";
        getJdbcTemplate().update(sql,money,target);
    }
    
    /**
     * 
     * <p>Title: decreaseMoney</p>   
     * <p>Description:转出 </p>   
     * @param target 目标账户
     * @param money  转出金额
     * @see cn.zw.tx.BankDao#decreaseMoney(int, double)
     */
    @Override
    public void decreaseMoney(int target, double money) {
        String sql = "update user set money = money - ? where id = ?";
        getJdbcTemplate().update(sql,money,target);
    }

}

package cn.zw.tx;

/**
 * 
 * @ClassName:  BankService   
 * @Description: 转账的业务层  
 */
public interface BankService {
    
    /**
     * 
     * @Title:  BankService   
     * @Description:  转账业务 
     * @param:  @param from  从哪个账务转出
     * @param:  @param to    向哪个账户转入
     * @param:  @param money  转入金额
     * @throws
     */
    void transfer(int from ,int to,double money);
}

package cn.zw.tx;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

@Service
public class BankServiceImpl implements BankService {
    
    @Autowired
    private BankDao db;
    

    /**
     * 
     * <p>Title: transfer</p>
     * <p>Description: 转账业务 </p>
     * @param: from 从哪个账务转出
     * @param: to 向哪个账户转入
     * @param: money 转入金额
     * @see cn.zw.tx.BankService#transfer(int, int, double)
     */
    @Override
    public void transfer(int from, int to, double money) {
        db.decreaseMoney(from, money);
        
        db.increaseMoney(to, money);
    }

}

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.springframework.org/schema/beans" xmlns:p="http://www.springframework.org/schema/p"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd">
    <context:property-placeholder location="classpath:c3p0.properties" />
    <context:component-scan base-package="cn.zw.tx"></context:component-scan>
    
    <bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="user" value="${jdbc.user}"></property>
        <property name="driverClass" value="${jdbc.driverClass}"></property>
        <property name="jdbcUrl" value="${jdbc.jdbcUrl}"></property>
        <property name="password" value="${jdbc.password}"></property>
    </bean>
    
    <bean name="bankDaoImpl"  class="cn.zw.tx.BankDaoImpl">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    
    
</beans>

`

package cn.zw.tx;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:application-context8.xml")
public class DemoTest {

    @Autowired
    private BankService bs;
    
    
    @Test
    public void fun01(){
        bs.transfer(1, 2, 100D);
    }
    
    
}

image.png

向代码中加入了异常,模拟停电

image.png

执行结果

image.png

将代码进行改造

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.springframework.org/schema/beans"
    xmlns:p="http://www.springframework.org/schema/p"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd">
    
    <context:property-placeholder location="classpath:c3p0.properties" />
    
    <context:component-scan base-package="cn.zw.tx"></context:component-scan>
    <!-- 配置数据库连接池 -->
    <bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="user" value="${jdbc.user}"></property>
        <property name="driverClass" value="${jdbc.driverClass}"></property>
        <property name="jdbcUrl" value="${jdbc.jdbcUrl}"></property>
        <property name="password" value="${jdbc.password}"></property>
    </bean>
    
    <bean name="bankDaoImpl"  class="cn.zw.tx.BankDaoImpl">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    
    
    <!-- 数据库实务管理类 -->
    <bean name="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    
    
    <!-- 定义通知 -->
    <tx:advice id="txAdvice" transaction-manager="transactionManager">
        <tx:attributes>
            <tx:method name="transfer" read-only="false" timeout="-1" propagation="REQUIRED" isolation="DEFAULT"/>
        </tx:attributes>
    </tx:advice>
    
    <!-- 织入 -->
    <aop:config>
        <aop:pointcut expression="execution(* cn.zw.tx.*ServiceImpl.*(..))" id="myPC"/>
        <aop:advisor advice-ref="txAdvice" pointcut-ref="myPC"/>
    </aop:config>
    
</beans>
image.png

搞定!

三、实现(注解)

`

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://www.springframework.org/schema/beans"
    xmlns:p="http://www.springframework.org/schema/p"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd">
    
    <context:property-placeholder location="classpath:c3p0.properties" />
    
    <context:component-scan base-package="cn.zw.tx"></context:component-scan>
    <!-- 配置数据库连接池 -->
    <bean name="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="user" value="${jdbc.user}"></property>
        <property name="driverClass" value="${jdbc.driverClass}"></property>
        <property name="jdbcUrl" value="${jdbc.jdbcUrl}"></property>
        <property name="password" value="${jdbc.password}"></property>
    </bean>
    
    <bean name="bankDaoImpl"  class="cn.zw.tx.BankDaoImpl">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    
    
    <!-- 数据库实务管理类 -->
    <bean name="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    
    <!-- 开启事物注解 -->
    <tx:annotation-driven transaction-manager="transactionManager"/>
    
    
</beans>
image.png
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容