SPRING03_AOP的概述动态代理cglib代理相关概念基于xml配置基于注解配置

Posted 所得皆惊喜

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SPRING03_AOP的概述动态代理cglib代理相关概念基于xml配置基于注解配置相关的知识,希望对你有一定的参考价值。

①. Spring的AOP简介

  • ①. AOP为 Aspect Oriented Programming的缩写,意思为面向切面编程,是通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术

AOP是OOP 的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率

  • ②. AOP 的作用及其优势
    作用:在程序运行期间,在不修改源码的情况下对方法进行功能增强
    优势:减少重复代码,提高开发效率,并且便于维护

  • ③. AOP的底层实现(下面有详解)
    实际上,AOP的底层是通过Spring提供的的动态代理技术实现的。在运行期间,Spring通过动态代理技术动态的生成代理对象,代理对象方法执行时进行增强功能的介入,再去调用目标对象的方法,从而完成功能的增强

  • ④. 常用的动态代理技术
    JDK 代理 : 基于接口的动态代理技术
    cglib 代理:基于父类的动态代理技术

②. 动态代理

  • ①. 目标类接口
	interface TargetInterface {
	    public void method();
	}
  • ②. 目标类
public class Target implements TargetInterface {
    @Override
    public void method() {
        System.out.println("Target running....");
    }
}
  • ③. 动态代理代码
	Target target = new Target(); //创建目标对象
	//创建代理对象
	TargetInterface proxy = (TargetInterface) Proxy.newProxyInstance(target.getClass()
	.getClassLoader(),target.getClass().getInterfaces(),new InvocationHandler() {
	            @Override
	            public Object invoke(Object proxy, Method method, Object[] args) 
	            throws Throwable {
	                System.out.println("前置增强代码...");
	                Object invoke = method.invoke(target, args);
	                System.out.println("后置增强代码...");
	                return invoke;
	            }
	        }
	);
  • ④. 调用代理对象的方法测试
	// 测试,当调用接口的任何方法时,代理对象的代码都无序修改
	proxy.method();

③. cglib的动态代理

  • ①. 目标类
	public class Target {
	    public void method() {
	        System.out.println("Target running....");
	    }
	}
  • ②. 动态代理代码
	Target target = new Target(); //创建目标对象
	Enhancer enhancer = new Enhancer();   //创建增强器
	enhancer.setSuperclass(Target.class); //设置父类
	enhancer.setCallback(new MethodInterceptor() { //设置回调
	    @Override
	    public Object intercept(Object o, Method method, Object[] objects, 
	    MethodProxy methodProxy) throws Throwable {
	        System.out.println("前置代码增强....");
	        Object invoke = method.invoke(target, objects);
	        System.out.println("后置代码增强....");
	        return invoke;
	    }
	});
	Target proxy = (Target) enhancer.create(); //创建代理对象
  • ③. 调用代理对象的方法测试
	//测试,当调用接口的任何方法时,代理对象的代码都无序修改
	proxy.method();

  • ④. JDK代理和cglib代理的区别
  1. JDK动态代理只能对实现了接口的类生成代理,而不能针对类
  2. CGLIB是针对类实现代理,主要是对指定的类生成一个子类,覆盖其中的方法因为是继承,所以该类或方法最好不要声明成final

④. AOP的相关概念

  • ①. Target(目标对象):被增强的对象(这里是UserDaoImpl)

  • ②. Proxy (代理):被应用增强后,产生一个代理对象,是一个代理的对象

  • ③.Joinpoint(连接点):指的是可以被拦截到的点
    (增删改查这些方法都可以被增强,这些方法称为是连接点)

  • ④. Pointcut(切入点):指的是真正被拦截到的点
    (只想对save方法进行增强(做权限校验),save方法称为是切入点)

  • ⑤. Advice(通知/ 增强):拦截后要做的事情

  • ⑥. Aspect(切面):是切入点和通知(引介)的组合,是一个类

  • ⑦. Weaving(织入):是切入点和通知的组合

	@AfterReturning(value="execution(* com.xiaozhi.annotation.*.*(..))")
	public void afterRetruning(){
		System.out.println("后置通知");
	}

⑤. 基于XML的AOP开发

  • ①. 导入依赖
<properties>
        <spring.version>5.0.5.RELEASE</spring.version>
    </properties>
    <!--导入spring的context坐标,context依赖core、beans、expression-->
    <dependencies>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>${spring.version}</version>
    </dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.12</version>
    </dependency>
        <!-- aspectj的织入 -->
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.8.13</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>5.1.0.RELEASE</version>
        </dependency>
    </dependencies>
  • ②. 创建目标接口和目标类(内部有切点)
	//创建目标接口和目标类(内部有切点)
	public interface TargetInterface {
	    public void method();
	}
	
	public class Target implements TargetInterface {
	    @Override
	    public void method() {
	        System.out.println("Target running....");
	    }
	}
	//创建切面类(内部有增强方法)
	public class MyAspect {
	    //前置增强方法
	    public void before(){
	        System.out.println("前置代码增强.....");
	    }
	}
  • ③. 基于xml的形式进行配置
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       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 id="target" class="com.xiaozhi.aop.Target"/>

    <!--切面对象-->
    <bean id="myAspect" class="com.xiaozhi.aop.MyAspect"></bean>

    <!--配置织入:告诉Spring框架,哪些方法(切点)需要进行哪些增强(前置 | 后置)-->
    <aop:config>
          <!--声明切面[告诉spring哪个类是切面类]-->
          <aop:aspect ref="myAspect">
          <!--切面:切入点+通知-->
              <!--通知
              method:切面类中增强的方法
              pointcut:切入点表达式
              -->
              <!--前置通知-->
              <aop:before method="before" pointcut="execution(public void com.xiaozhi.aop.Target.save())"></aop:before>
          </aop:aspect>
    </aop:config>
</beans>
  • ④. 进行测试
	@RunWith(SpringJUnit4ClassRunner.class)
	@ContextConfiguration("classpath:applicationContext.xml")
	public class AopTest {
	    @Autowired
	    private TargetInterface target;
	    @Test
	    public void test1(){
	        target.method();
	    }
	}

⑥. XML配置AOP详解

  • ①. 切点表达式的写法
execution([修饰符] 返回值类型 包名.类名.方法名(参数))
访问修饰符可以省略
返回值类型、包名、类名、方法名可以使用星号*  代表任意
包名与类名之间一个点 . 代表当前包下的类,两个点 .. 表示当前包及其子包下的类
参数列表可以使用两个点 .. 表示任意个数,任意类型的参数列表
execution(public void com.itheima.aop.Target.method())	
execution(void com.itheima.aop.Target.*(..))
// 常用:aop包下任意类的任意方法
execution(* com.itheima.aop.*.*(..))
//aop包及其子类任意类的任意方法
execution(* com.itheima.aop..*.*(..))
execution(* *..*.*(..))
  • ②. 通知的类型
<aop:通知类型 method=“切面类中方法名” pointcut=“切点表达式"></aop:通知类型>

  • ③. 代码展示
public class MyAspect {

    /*前置通知*/
    public void before(){
        System.out.println("前置增强");
    }

    /*后置通知*/
    public void afterRetruning(){
        System.out.println("后置通知");
    }
    /*环绕通知
    ProceedingJoinPoint:正在执行的连接点[切点]
     */
    public Object around(ProceedingJoinPoint pjp) throws Throwable {
        System.out.println("环绕前增强...");
        //切点方法
        Object proceed=pjp.proceed();
        System.out.println("环绕后增强...");
        return proceed;
    }
    /*异常通知*/
    public void afterThrowing(){
        System.out.println("异常抛出异常");
    }
    /*最终通知*/
    public void after(){
        System.out.println("最终通知执行了");
    }
}

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       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 id="target" class="com.xiaozhi.aop.Target"/>

    <!--切面对象-->

    <bean id="myAspect" class="com.xiaozhi.aop.MyAspect"></bean>

    <!--配置织入:告诉Spring框架,哪些方法(切点)需要进行哪些增强(前置 | 后置)-->
    <aop:config>
          <!--声明切面-->
          <aop:aspect ref="myAspect">
          <!--切面:切入点+通知-->
              <!--通知
              method:切面类中增强的方法
              pointcut:切入点表达式
              -->
              <!--前置通知-->
              <aop:before method="before" pointcut="execution(public void com.xiaozhi.aop.Target.save())"></aop:before>
              <!--后置通知-->
              <aop:after-returning method="afterRetruning" pointcut="execution(* com.xiaozhi.aop.*.*(..))"></aop:after-returning>
              <!--环绕通知-->
              <aop:around method="around" pointcut="execution(* com.xiaozhi.aop.*.*(..))"></aop:around>
              <!--异常通知-->
              <aop:after-throwing method="afterThrowing" pointcut="execution(* com.xiaozhi.aop.*.*(..))"></aop:after-throwing>
              <!--最终通知-->
              <aop:after method="after" pointcut="execution(* com.xiaozhi.aop.*.*(..))"></aop:after>
          </aop:aspect>
    </aop:config>
</beans>
  • ④. 切点表达式的抽取
    (当多个增强的切点表达式相同时,可以将切点表达式进行抽取,在增强中使用 pointcut-ref 属性代替 pointcut 属性来引用抽取后的切点表达式)
<aop:config>
    <!--引用myAspect的Bean为切面对象-->
    <aop:aspect ref="myAspect">
        <aop:pointcut id="myPointcut" expression="execution(* com.xiaozhi.aop.*.*(..))"/>
        <aop:before method="before" pointcut-ref="myPointcut"></aop:before>
    </aop:aspect>
</aop:config>

⑦. 基于注解的AOP开发

  • ①. 注解通知的类型

  • ②. 切点表达式的抽取
    @Pointcut:用于定义切入点表达式。在使用时还需要定义一个包含名字和任意参数的方法签名来表示切入点名称。实际上,这个方法签名就是一个返回值为void,且方法体为空的普通的方法

  • ③. 基于注解的AOP

  1. 将业务逻辑组件和切面类都加入到容器中;告诉Spring哪个是切面类(@Aspect)
  2. 在切面类上的每一个通知方法上标注通知注解,告诉Spring何时可以运行(切入点表达式)
  3. 在配置文件中配置aop自动代理<aop:aspectj-autoproxy/>
    开启基于注解的aop模式:@EnableApectJAutoProxy
  • ④. 关于JointPoint必须放在方法的第一位参数中
方法说明
joinpoint.getargs()获取参数
joinPoint.getSignature().getName获取方法的名称
joinpoint.getTarget()获取目标方法
joinpoint.getThis()获取代理对象

public interface TargetInterface {
    public void save();
}
@Component
public class Target implements TargetInterface {

    public void save() {
        System.out.println("save running");
    }
}
//掌握
@Component("myAspect")
@Aspect//标志当前MyAspectAnnotation是一个切面类
public class MyAspectAnnotation {

    //定义切点表达式
    @Pointcut("execution(* com.xiaozhi.annotation.*.*(..))")
    public void pointCut(){}
    /*前置通知*/
    @Before(value="pointCut()")
    public void before(){
        System.out.println("前置增强");
    }

    /*后置通知*/
    @AfterReturning(value = "execution(* com.xiaozhi.annotation.*.*(..))")
    public void afterRetruning(){
        System.out.println("后置通知");
    }
    /*环绕通知
    ProceedingJoinPoint:正在执行的连接点[切点]
     */
    @Around("MyAspectAnnotation.pointCut()")
    public Object around(ProceedingJoinPoint pjp) throws Throwable {
        System.out.println("环绕前增强...");
        //切点方法
        Object proceed=pjp.proceed();
        Spring aop 基于JDK动态代理和CGLIB代理的原理以及为什么JDK代理需要基于接口

Spring aop 基于JDK动态代理和CGLIB代理的原理以及为什么JDK代理需要基于接口

Spring_11-Spring5总结

Spring框架的AOP实现(JDK+CGLIB)

Spring AOP:CGLIB动态代理

spring aop原理 JDK动态代理和CGLIB动态代理