Spring AOP

一、AOP

AOP(Aspect Oriented Programming),即面向切面编程,可以说是OOP(Object Oriented Programming,面向对象编程)的补充和完善。

A、 OOP

OOP引入封装、继承、多态等概念来建立一种对象层次结构,用于模拟公共行为的一个集合。
OOP允许开发者定义纵向的关系,但并不适合定义横向的关系,例如日志功能。日志代码往往横向地散布在所有对象层次中,而与它对应的对象的核心功能毫无关系对于其他类型的代码,如安全性、异常处理和透明的持续性也都是如此,这种散布在各处的无关的代码被称为横切(cross cutting),在OOP设计中,它导致了大量代码的重复,而不利于各个模块的重用。

B、 AOP

利用一种称为"横切"的技术,剖解开封装的对象内部,并将那些影响了多个类的公共行为封装到一个可重用模块,并将其命名为"Aspect",即切面。
所谓"切面",简单说就是那些与业务无关,却为业务模块所共同调用的逻辑或责任封装起来,便于减少系统的重复代码,降低模块之间的耦合度,并有利于未来的可操作性和可维护性。

横切技术

AOP把软件系统分为两个部分:核心关注点和横切关注点。业务处理的主要流程是核心关注点,与之关系不大的部分是横切关注点。
横切关注点的一个特点是,他们经常发生在核心关注点的多处,而各处基本相似,比如权限认证、日志、事物。AOP的作用在于分离系统中的各种关注点,将核心关注点和横切关注点分离开来。

C、 Spring对AOP的支持

Spring中AOP代理由Spring的IOC容器负责生成、管理,其依赖关系也由IOC容器负责管理。因此,AOP代理可以直接使用容器中的其它bean实例作为目标,这种关系可由IOC容器的依赖注入提供。

Spring创建代理的规则为:

1、默认使用Java动态代理来创建AOP代理,这样就可以为任何接口实例创建代理了
2、当需要代理的类不是代理接口的时候,Spring会切换为使用CGLIB代理,也可强制使用CGLIB代理,需要在xml中加入如下配置

<aop:aspectj-autoproxy proxy-target-class="true"/>

一般遇到如下的报错信息,大都是由这个原因导致的

com.sun.proxy.$Proxy2 cannot be cast to

二、AOP的使用

A、 依赖jar包

使用Spring AOP,除使用Spring提供的jar包外,还依赖两个jar包:
aopalliance.jar aspectjweaver.jar
spring-tx.jar???

    <!-- https://mvnrepository.com/artifact/aopalliance/aopalliance -->
    <dependency>
      <groupId>aopalliance</groupId>
      <artifactId>aopalliance</artifactId>
      <version>1.0</version>
    </dependency>

    <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
    <dependency>
      <groupId>org.aspectj</groupId>
      <artifactId>aspectjweaver</artifactId>
      <version>1.8.13</version>
    </dependency>

<dependency>
      <groupId>org.springframework</groupId>
      <artifactId>spring-tx</artifactId>
      <version>4.2.4.RELEASE</version>
    </dependency>

B、 代码讲解

定义一个接口

package com.spring.service;

public interface ICase {
    void getName();
    void getResult();
}

定义两个接口实现类:

package com.spring.service.impl;

import com.spring.service.ICase;

public class TestCase implements ICase {

    public void getName() {
        System.out.println("TestCase.getName");
    }

    public void getResult() {
        System.out.println("TestCase.getResult");
    }
}
package com.spring.service.impl;

import com.spring.service.ICase;

public class TestSuite implements ICase{

    public void getName(){
        System.out.println("TestSuite.getName");
    }

    public void getResult(){
        System.out.println("TestSuite.getResult");
    }
}

横切关注点

package com.fei.tools;

import java.text.SimpleDateFormat;
import java.util.Date;

public class TimeHandler {
    public void printTime()
    {
        long currentTime = System.currentTimeMillis();
        SimpleDateFormat formatter = new SimpleDateFormat("yyyy年MM月dd日-HH时mm分ss秒");
        Date date = new Date(currentTime);
        System.out.println(formatter.format(date));
    }
}

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-4.2.xsd
            http://www.springframework.org/schema/aop
            http://www.springframework.org/schema/aop/spring-aop-4.2.xsd">

    <bean id="testcase" class="com.spring.service.impl.TestCase" />
    <bean id="testsuite" class="com.spring.service.impl.TestSuite" />
    <bean id="timeHandler" class="com.fei.tools.TimeHandler" />

    <aop:aspectj-autoproxy proxy-target-class="true"/>
    <aop:config>
        <aop:aspect id="time" ref="timeHandler">
            <aop:pointcut id="addAllMethod" expression="execution(* com.spring.service.ICase.*(..))" />
            <aop:before method="printTime" pointcut-ref="addAllMethod" />
            <aop:after method="printTime" pointcut-ref="addAllMethod" />
        </aop:aspect>
    </aop:config>

</beans>

横切关注点的作用是在调用ICase接口下的方法,之前和之后执行TimeHandler的printTime方法。
写一个测试函数调用一下:

package com.spring.maintest;

import com.spring.service.impl.TestCase;
import com.spring.service.impl.TestSuite;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class AOPTest {

    public static void main(String[] args) {

        ApplicationContext ctx = new ClassPathXmlApplicationContext("Spring-AOP.xml");
        TestCase tc = (TestCase)ctx.getBean("testcase");
        TestSuite ts = (TestSuite)ctx.getBean("testsuite");

        System.out.println("===========================");
        tc.getName();
        System.out.println("---------------------------");
        tc.getResult();
        System.out.println("===========================");
        ts.getName();
        System.out.println("---------------------------");
        ts.getResult();
        System.out.println("===========================");

    }
}

输出代码如下

===========================
2018年03月24日-12时01分55秒
TestCase.getName
2018年03月24日-12时01分55秒
---------------------------
2018年03月24日-12时01分55秒
TestCase.getResult
2018年03月24日-12时01分55秒
===========================
2018年03月24日-12时01分55秒
TestSuite.getName
2018年03月24日-12时01分55秒
---------------------------
2018年03月24日-12时01分55秒
TestSuite.getResult
2018年03月24日-12时01分55秒
===========================

增加一个横切关注点,打印日志

package com.fei.tools;

public class LogHandler {

    public void BeforeTest()
    {
        System.out.println("Begin to test");
    }

    public void AfterTest()
    {
        System.out.println("Test End");
    }
}

AOP的属性

执行顺序

要想让logHandler在timeHandler前使用有两个办法:
(1)aspect里面有一个order属性,order属性的数字就是横切关注点的顺序
(2)把logHandler定义在timeHandler前面,Spring默认以aspect的定义顺序作为织入顺序

指定方法执行

修改一下pointcut的expression就好了

举例修改xml,使得在只有执行getResult方法前后才调用LogHandler类下的方法

<?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-4.2.xsd
            http://www.springframework.org/schema/aop
            http://www.springframework.org/schema/aop/spring-aop-4.2.xsd">
    <!--xmlns:tx="http://www.springframework.org/schema/tx"-->
    <bean id="testcase" class="com.spring.service.impl.TestCase" />
    <bean id="testsuite" class="com.spring.service.impl.TestSuite" />
    <bean id="timeHandler" class="com.fei.tools.TimeHandler" />
    <bean id="logHandler" class="com.fei.tools.LogHandler" />

    <aop:aspectj-autoproxy proxy-target-class="true"/>
    <aop:config>
        <aop:aspect id="time" ref="timeHandler" order="1">
            <aop:pointcut id="addAllMethod" expression="execution(* com.spring.service.ICase.*(..))" />
            <aop:before method="printTime" pointcut-ref="addAllMethod" />
            <aop:after method="printTime" pointcut-ref="addAllMethod" />
        </aop:aspect>
        <aop:aspect id="log" ref="logHandler" order="2">
            <aop:pointcut id="printLog" expression="execution(* com.spring.service.ICase.*Result*(..))" />
            <aop:before method="BeforeTest" pointcut-ref="printLog" />
            <aop:after method="AfterTest" pointcut-ref="printLog" />
        </aop:aspect>
    </aop:config>
</beans>

输出如下

===========================
2018年03月24日-12时33分27秒
TestCase.getName
2018年03月24日-12时33分27秒
---------------------------
2018年03月24日-12时33分27秒
Begin to test
TestCase.getResult
Test End
2018年03月24日-12时33分27秒
===========================
2018年03月24日-12时33分27秒
TestSuite.getName
2018年03月24日-12时33分27秒
---------------------------
2018年03月24日-12时33分27秒
Begin to test
TestSuite.getResult
Test End
2018年03月24日-12时33分27秒
===========================

参考文档
http://www.cnblogs.com/xrq730/p/4919025.html
https://www.cnblogs.com/zhaozihan/p/5953063.html

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

推荐阅读更多精彩内容