Spring框架之AOP概念详解和应用(二)

AOP概述
  • 在软件业,AOP为Aspect Oriented Programming的缩写,意为面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。
  • AOP是OOP面向对象编程的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范围型。
  • 利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
  • AOP采用横向抽取机制,取代了传统纵向继承体系重复性代码。
  • 经典应用,事务管理,性能监听,安全检查,缓存和日志等
  • Spring AOP使用纯Java实现,不需要专门的编译和类加载器,在运行期通过代理方式向目标类织入增强代码。
  • Aspect是基于Java语言的AOP框架,Spring2.0开始,Spring AOP进入对Aspect的支持,AspectJ扩展Java语言,提供了一个专门的编译器,在编译时提供横向代码的织入。
AOP实现原理
  • aop底层将采用代理机制进行实现
  • 接口+实现类,Spring采用jdk的动态代理proxy
  • 实现类:Spring采用cglib字节码增强
AOP术语
  • target:目标类,需要被代理的类,例如:UserService
  • JoinPoint(连接点):所谓连接点是指那些可能被拦截到的地方。如所有的方法。
  • advice通知/增强代码。如after、before。
  • weaving(织入):是指把增强advice应用到目标对象target来创建新的代理对象Proxy的过程。
  • Proxy:代理
  • Aspect(切面):是切入点pointcut和通知advice的结合。一条线是一个特殊的面。
    一个切入点和一个通知,组成一个特殊的面。


    image.png

手动代理

JDK动态代理
 public static IUserService createUserService() {
        final MyAspect myAspect = new MyAspect();
        final IUserService userService = new UserServiceImpl();
        IUserService proxy = (IUserService)Proxy.newProxyInstance(MyFactory.class.getClassLoader(), userService.getClass().getInterfaces(), new InvocationHandler() {
            @Override
            public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                myAspect.before();
                Object obj = method.invoke(userService,args);
                System.out.println("拦截返回值:" + obj);
                myAspect.after();
                return obj;
            }
        });

        return proxy;
    }
CGLib增强字节码
  • 没有接口,只有实现类
  • 采用字节码增强框架cglib,在运行时,创建目标类的子类,从而对目标类进行增强。
    导入jar包
    核心库:hibernate-distribution-3.6.10.final\lib\bytecode\cglib\cglib-2.2.jar
    依赖:struts-2.3.15.3\apps\struts2-blank\WEB-INF\lib\asm-3.3.jar spring-core.jar已经整合以上两个内容。
public static IUserService createUserService() {
   //目标类
   final IUserService userService = new UserServiceImpl();
   //切面类
   final MyAspect aspect = new MyAspect();
   //3 cglib核心类
   Enhancer enhancer = new Enhancer();
   enhancer.setSuperclass(userService.getClass());
   enhancer.setCallback(new MethodInterceptor() {
      @Override
      public Object intercept(Object proxy, Method method, Object[] args, MethodProxy methodProxy) throws Throwable {
             aspect.before();
             Object obj = methodProxy.invokeSuper(proxy,args);
             aspect.after();
             return obj;
         }
      });
  UserServiceImpl proxy = (UserServiceImpl) enhancer.create();
  return proxy;
}
AOP联盟通知类型

AOP联盟通知Advice定义了org.aopalliance.Advice.
Spring按照通知Advice在目标类方法的连接点位置,可以分为5类。

  • 前置通知:org.springframework.aop.MethodBeforeAdvice
    在目标方法执行前实施增强。
  • 后置通知:org.aopalliance.intercept.MethodInterceptor
    在目标方法执行后实施增强。
  • 环绕通知:org.aopalliance.intercept.MethodInterceptor
    在目标方法前后实施增强。
  • 异常抛出通知:org.springframework.aop.ThrowsAdvice
    在方法抛出异常后实施增强。
  • 引介通知:org.springframework.aop.IntroductionInterceptor
    在目标类中添加一些新的方法和属性
Spring 编写代理半自动

目标掌握让Spring创建代理对象,从Spring容器中手动的获取代理对象。
第一步:导入jar包
核心4+1,AOP联盟(规范)、Spring-aop(实现)
com.springsource.org-aopalliance-1.0.0.jar AOP联盟
spring-aop-3.2.0.RELEASE.jar AOP实现。
第二步:目标类
IUserService

public interface IUserService {
    void addUser(User user);
    void updateUser(User user);
    void delete(String username);
}

UserServiceImpl

@Service("userService")
public class UserServiceImpl implements IUserService {
    
    private UserDaoImpl userDao = new UserDaoImpl();

    public void setUserDao(UserDaoImpl userDao) {
        this.userDao = userDao;
    }

    @Override
    public void addUser(User user) {
        userDao.save(user);
    }

    @Override
    public void updateUser(User user) {
        userDao.update(user);
    }

    @Override
    public void delete(String username) {
        userDao.delete(username);
    }
}

第三步:切面类

public class UserAspect implements MethodInterceptor {
    @Override
    public Object invoke(MethodInvocation methodInvocation) throws Throwable {
        System.out.println("before...................");
        Object obj = methodInvocation.proceed();
        System.out.println("after....................");
        return obj;
    }
}

第四步:Spring配置

<beans  xmlns="http://www.springframework.org/schema/beans"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:context ="http://www.springframework.org/schema/context"
        xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        https://www.springframework.org/schema/context/spring-context.xsd">

    <bean id="myAspect" class="com.zzx.aspect.UserAspect"></bean>
    <bean id="userDao" class="com.zzx.dao.impl.UserDaoImpl"></bean>
    <bean id="userService" class="com.zzx.service.impl.UserServiceImpl">
        <property name="userDao" ref="userDao"></property>
    </bean>
    <bean id="proxyService" class="org.springframework.aop.framework.ProxyFactoryBean">
        <property name="interfaces" value="com.zzx.service.IUserService"/>
        <property name="target" ref="userService"/>
        <property name="interceptorNames" value="myAspect"/>
        <!--配置使用cglib-->
        <property name="optimize" value="true"></property>
    </bean>
</beans>
Spring AOP全自动编程

第一步:导入jar包 aspectjweaver-1.8.13.jar下载及Maven、Gradle引入代码,pom文件及包内class -时代Java (nowjava.com)
第二步:Spring的AOP配置

<?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:context ="http://www.springframework.org/schema/context"
                xmlns:aop ="http://www.springframework.org/schema/aop"
                xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        https://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd">
<bean id="userService" class="com.zzx.service.impl.UserServiceImpl"/>
<bean id="myAspect" class="com.zzx.aspect.UserAspect"/>

<aop:config proxy-target-class="true">
    <aop:pointcut id="pointcut" expression="execution(* com.zzx.service.*.*(..))"/>
    <aop:advisor advice-ref="myAspect" pointcut-ref="pointcut"/>
</aop:config>

</beans>

切入点 expression表达式 execution(* 报名..(..)) 第一个“”固定写法,第二个“”表示的是任意类名,第三个“*”表示的是任意方法名称,"(..)"表示的是任意参数。

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

推荐阅读更多精彩内容

  • Spring AOP详解 一.前言 在以前的项目中,很少去关注spring aop的具体实现与理论,只是简单了解了...
    无羡爱诗诗阅读 423评论 0 3
  • 一.前言 在以前的项目中,很少去关注spring aop的具体实现与理论,只是简单了解了一下什么是aop具体怎么用...
    月朦胧_f8ad阅读 102评论 0 0
  • 导言 AOP(Aspect Orient Programming),作为面向对象编程的一种补充,广泛应用于处理一些...
    周若谷阅读 2,685评论 1 2
  • Spring AOP 模块,是 Spring 框架体系结构中十分重要的内容,该模块中提供了面向切面编程实现 。本章...
    辽A丶孙悟空阅读 1,128评论 2 14
  • **** AOP 面向切面编程 底层原理 代理!!! 今天AOP课程1、 Spring 传统 AOP2、 Spri...
    luweicheng24阅读 1,355评论 0 1