Spring-AOP本质原理分析(七)

什么是AOP


AOP是OOP的延续,是Aspect Oriented Programming的缩写,意思是面向切面编程。可以通过预编译方式和运行期动态代理实现在不修改源代码的情况下给程序动态统一添加功能的一种技术。AOP实际是GoF设计模式的延续,设计模式孜孜不倦追求的是调用者和被调用者之间的解耦,AOP可以说也是这种目标的一种实现。

我们现在做的一些非业务,如:日志、事务、安全等都会写在业务代码中(也即是说,这些非业务类横切于业务类),但这些代码往往是重复,复制——粘贴式的代码会给程序的维护带来不便,AOP就实现了把这些业务需求与系统需求分开来做。这种解决的方式也称代理机制

 

AOP在Spring中的作用


提供声明式事务; 允许用户自定义切面

横切关注点:跨越应用程序多个模块的方法或功能。即是,与我们业务逻辑无关的,但是我们需要关注的部分,就是横切关注点。如日志 , 安全 , 缓存 , 事务等等 ....

切面(ASPECT):横切关注点 被模块化 的特殊对象。即,它是一个类。

通知(Advice):切面必须要完成的工作。即,它是类中的一个方法。

目标(Target):被通知对象。

代理(Proxy):向目标对象应用通知之后创建的对象。

切入点(PointCut):切面通知 执行的 “地点”的定义。

连接点(JointPoint):与切入点匹配的执行点。

 

 

SpringAOP中,通过Advice定义横切逻辑,Spring中支持5种类型的Advice:

 

即 aop 在不改变原有代码的情况下 , 去增加新的功能 .

使用SpringAPI实现AOP


 

编写业务类

public interface UserService {

     void add();
     void delete();
     void update();
     void query();

}

业务类的实现类

public class UserServiceImpl implements UserService{
    public void add() {
        System.out.println("增加了一个用户");
    }

    public void delete() {
        System.out.println("删除了一个用户");
    }

    public void update() {
        System.out.println("更新了一个用户");
    }

    public void query() {
        System.out.println("查询了一个用户");
    }
}

定义日志增加类实现

package org.west.advicemethod;
import org.springframework.aop.MethodBeforeAdvice;
import java.lang.reflect.Method;
public class BeforeAdvice implements MethodBeforeAdvice {
    // method:要被执行目标对象的方法
    //object :要被调用的方法的参数
    //o: 目标对象
    public void before(Method method, Object[] objects, Object o) throws Throwable {
        System.out.println(o.getClass().getName()+"的"+method.getName()+"的方法被执行了");
    }
}

定义日志增加类实现

package org.west.advicemethod;

import org.springframework.aop.AfterReturningAdvice;

import java.lang.reflect.Method;

public class AfterAdvice implements AfterReturningAdvice {
    //value:返回值
    //method:被调用的方法
    //args:被调用方法的参数
    //target:目标对象
    public void afterReturning(Object value, Method method, Object[] args, Object target) throws Throwable {

        System.out.println(target.getClass().getName()+"的"
                +method.getName()+"的方法被调用了"+
                "返回值是"+value);


    }


}

编写Spring核心配置文件

注意: 

 写入AOP的约束: 

 xmlns:aop="http://www.springframework.org/schema/aop"
 http://www.springframework.org/schema/aop
 http://www.springframework.org/schema/aop/spring-aop.xsd

用meavn导入AOP的织入包
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.9</version>
</dependency>

配置文件:

<?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">

    <!--注册bean-->
    <bean id="userService" class="org.west.service.UserServiceImpl"/>

    <!--注册advice类的bean-->
    <bean id="beforeAdvice" class="org.west.advicemethod.BeforeAdvice"/>
    <bean id="afterAdvice" class="org.west.advicemethod.AfterAdvice"/>

    <!--
    使用spring AOP切入
    注意导入约束文件: xmlns:aop="http://www.springframework.org/schema/aop"
                     http://www.springframework.org/schema/aop
                     http://www.springframework.org/schema/aop/spring-aop.xsd
    -->
    <aop:config>
        <!--pointcut:切入点
         expression:表达式要切入的点
          语法execution([类的修饰符] [类的全路径] [方法] [参数])
          -->
        <aop:pointcut id="pointcut" expression="execution(* org.west.service.UserServiceImpl.*(..))"/>
        <!--执行通知  增强
        pointcut-ref:在那个切入点执行增强-->
        <aop:advisor advice-ref="beforeAdvice" pointcut-ref="pointcut"/>
        <aop:advisor advice-ref="afterAdvice" pointcut-ref="pointcut"/>
    </aop:config>

</beans>

编写测试类:

public class TestDemo {
    @Test
    public void test(){

        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");

        UserService userService = (UserService) context.getBean("userService");

        userService.add();

    }

}

spring调用的是真实对象userService
暗箱中: 动态的修改userService,在方法的前后或者其他通知的地方增加了我们的切入代码。
我们就可以实现依旧调用原来的对象,产生增加新的业务的功能;

Spring的AOP就是将公共业务代码(日志,事务,安全...),和业务类(真实对象)结合起来,实现公共业务的重复利用,解耦,本质还是动态代理。

posted @ 2019-08-04 15:23  七月的风没有雨  阅读(749)  评论(0编辑  收藏  举报