Java实训(3) -- Spring核心之AOP -- 2018-06-06

Spring AOP编程

  1. 什么是 AOP 编程?

AOP是Aspect Oriented Programming的缩写,意思是面向方面编程,与OOP(Object Oriented Programming)面向对象编程对等,都是一种编程思想。
从OOP角度分析,我们关注业务的处理逻辑,是属于纵向的行为,从AOP角度分析,我们关注对象行为发生时的问题,是属于横向的行为。

  1. AOP 包括什么?

切面

切入点

通知定义了切面的什么和何时,切点定义了何处,切点的定义会匹配通知所要织入的一个或多个连接点,我们通常使用明确的类的方法名称来指定这些切点,或是利用正则表达式定义匹配的类和方法名称来指定这些切点。

通知

前置通知

后置通知

异常通知

环绕通知

  1. AOP 开发步骤
  1. 新建一个切面类,实现通知接口

  2. 修改spring 配置文件或使用注解,把切面类交给 spring 进行管理

  3. 修改 spring 配置文件,引入 aop 名称空间配置

  4. 配置 aop:config

  5. 执行包含切入点的代码,切面自动执行

1. 新建一个工程,工程结构如下所示:
项目工程结构图

部分代码展示(Getting Setting 方法已省略):

Category.java :

package com.neuedu.springaop.bean
public class Category {
   private int id;
   private String name;
   
   public Category() {
       super();
   }
   
   public Category(int id) {
       super();
       this.id = id;
  
   public Category(int id, String name) {
       super();
       this.id = id;
       this.name = name;
   }
}

ICategoryDao.java (模拟数据库操作)

package com.neuedu.springaop.dao;

import java.util.List;

import com.neuedu.springaop.bean.Category;

public interface ICategoryDao {
    public boolean saveCategory(Category category);
    public boolean deleteCategory(Category category);
    public boolean editCategory(Category category);
    public Category findById(int id);
    public List<Category> searchByExample(Category category);
}

ICategoryService.java

package com.neuedu.springaop.service;

import java.util.List;

import com.neuedu.springaop.bean.Category;

    public interface ICategoryService {
    public boolean saveCategory(Category category);
    public boolean deleteCategory(Category category);
    public boolean editCategory(Category category);
    public Category findById(int id);
    public List<Category> searchByExample(Category category);
}

新建一个切面类 : Thranslation.java

package com.neuedu.springaop.aop;

import java.lang.reflect.Method;


import org.springframework.aop.AfterReturningAdvice;
import org.springframework.aop.MethodBeforeAdvice;
import org.springframework.aop.ThrowsAdvice;

/*
 * 模拟事务的类
 * 
 * 1.前置通知接口:MethodBeforeAdvice,对应切入点-表示在方法调用前切入
 * 2.后置通知接口:AfterReturningAdvice,对应切入点-表示在方法返回后执行
 */

public class Thranslation implements MethodBeforeAdvice,AfterReturningAdvice,ThrowsAdvice{

    @Override
    public void before(Method arg0, Object[] arg1, Object arg2) throws Throwable {
       System.out.println("模拟事务开启......");
    }

    @Override
    public void afterReturning(Object arg0, Method arg1, Object[] arg2, Object arg3) throws Throwable {
        System.out.println("模拟事务提交......");
    }

    public void afterThrowing(Exception e) {
        System.out.println("模拟事务回滚......");
    }
}

2-4. 修改后的applicationContext.xml 文件内容:
<?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" 
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.xsd">

    <!-- 配置aop切面 -->
    <!-- 把切面类交给spring进行管理 -->
    <bean id="Thranslation" class="com.neuedu.springaop.aop.Thranslation"></bean>
    <!-- 配置切面 -->
    <aop:config>
        <!-- 配置切入点 -->
        <!-- 切入点表达式说明:execution表示执行,第一个*号表示修饰符号,接着配置package包名.接口名或类名.方法名(参数列表) 
            *号表示多种情况,参数的两点表示不定参数(0-n个参数)
        -->
        <aop:pointcut expression="execution(* com.neuedu.springaop.service.ICategoryService.*(..))
        " id="txPointcut"/>
        <!-- 配置aop通知 -->
        <aop:advisor advice-ref="Thranslation" pointcut-ref="txPointcut"/>
    </aop:config>
 
    <!-- 表示层 -->
    
    <!-- 业务逻辑层 -->
    <bean id="CategoryServiceImpl" class="com.neuedu.springaop.service.impl.CategoryServiceImpl">
        <property name="categoryDao" ref="CategoryDaoImpl"></property>
    </bean>
    
    <!-- 数据访问层 -->
    <bean id="CategoryDaoImpl" class="com.neuedu.springaop.dao.impl.CategoryDaoImpl"></bean>
</beans>

5. 执行包含切入点的代码,切面自动执行

编写一个测试类 TestCategoryService.java

package test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.neuedu.springaop.bean.Category;
import com.neuedu.springaop.service.ICategoryService;

public class TestCategoryService {
    public static void main(String[] args) {
        
        //1.配置spring环境
        String configLocation = "config/applicationContext.xml";
        ApplicationContext context = new ClassPathXmlApplicationContext(configLocation);
        
        //2.获取业务对象
        ICategoryService service = context.getBean(ICategoryService.class);

        //3.进行业务测试 
        Category category = new Category();  
        boolean res = service.saveCategory(category);
        if(res) {
            System.out.println("新增成功");
        }else {
            System.out.println("新增失败");
        }
        
    }
}

执行测试程序,获得执行结果 :

模拟事务开启......
执行新增功能...
模拟事务提交......
新增成功
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,539评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,911评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,337评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,723评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,795评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,762评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,742评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,508评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,954评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,247评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,404评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,104评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,736评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,352评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,557评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,371评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,292评论 2 352

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,649评论 18 139
  • 本章内容: 面向切面编程的基本原理 通过POJO创建切面 使用@AspectJ注解 为AspectJ切面注入依赖 ...
    谢随安阅读 3,144评论 0 9
  • 一、AOP的基础 1.1、AOP是什么??? 考虑这样一个问题:需要对系统中的某些业务做日志记录,比如支付系统中的...
    聂叼叼阅读 2,111评论 2 17
  • 阿绫,我是天依,你还记得我吗?为什么,他们要把你带走?我记得你走时脖子上有一圈纱布,你是不能唱歌了吗?天依想你啊,...
    艾登p阅读 490评论 0 1
  • 1、事业分享1人 2、课件学习 个人体会 知道出租车最危险是在什么时候吗?答案是没有乘客的时候,出租车在有乘...
    葆婴USANA廖瑜阅读 154评论 0 0