天天看点

Spring学习(二)代理模式(静态代理、动态代理)、Spring AOP

一、代理模式

因为 Spring AOP 的底层就是实现就是代理模式,所以代理模式的学习是必要的。

代理模式分为:静态代理和动态代理

代理模式租房案例图解:

Spring学习(二)代理模式(静态代理、动态代理)、Spring AOP
1、静态代理

代码实现:

接口:

package com.zyh.demo01;

/**
 * 租房的接口
 */
public interface Rent {
    public void rent();
}

           

房东:

package com.zyh.demo01;

/**
 * 房东,真实的角色,实现租房的接口
 */
public class LandLord implements Rent{
    public void rent() {
        System.out.println("房东出租房子");
    }
}

           

代理角色:中介

package com.zyh.demo01;

public class Proxy implements Rent {
    private LandLord landLord;

    public Proxy() {
    }

    public Proxy(LandLord landLord) {
        this.landLord = landLord;
    }

    public void rent() {
        landLord.rent();
    }

    public void signContract() {
        System.out.println("中介带你签合同");
    }
}

           

客户:租房的人

package com.zyh.demo01;

/**
 * 代理模式:租房的人在租房时,就不用再去找房东,而是去找中介,中介直接带他看房签合同
 */

public class Client {
    public static void main(String[] args) {
        LandLord landLord = new LandLord();
        Proxy proxy = new Proxy(landLord);
        proxy.rent();
        proxy.signContract();
    }
}
           

代理模式的优点:

  • 可以使真实角色的操作更加纯粹,不用再去关心其他一些公共的业务。
  • 公共的业务就交给代理角色,实现了业务的分工。
  • 公共业务发生变化的时候,方便管理。

缺点:

  • 一个真实的角色就会产生一个代理角色,增加了代码量,降低开发效率。
2、动态代理
动态代理的角色和静态代理的角色一样,和静态代理不一样的是动态代理的代理类是动态生成的,不是我们手动写死的;动态代理分为两种:基于接口的动态代理和基于类的动态代理。

代码实现:

动态代理类:需实现

InvocationHandler

接口

package com.zyh.demo03;

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;

//这个自动生成代理类
public class ProxyInvocationHandler implements InvocationHandler {

    //被代理的接口
    private Object target;

    public void setTarget(Object target) {
        this.target = target;
    }

    //重写接口的方法,生成要得到的代理类
    public Object getProxy() {
        return Proxy.newProxyInstance(this.getClass().getClassLoader(), target.getClass().getInterfaces(),
                this);
    }

    //处理代理类的实例,返回结果
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        log(method.getName());
        Object result = method.invoke(target, args);
        return result;
    }

    public void log(String msg) {
        System.out.println("执行了" + msg + "方法");
    }
}

           

测试:

package com.zyh.demo03;

import com.zyh.demo02.UserService;
import com.zyh.demo02.UserServiceImpl;

public class Client {
    public static void main(String[] args) {
        //真实角色
        UserService userService = new UserServiceImpl();

        ProxyInvocationHandler pih = new ProxyInvocationHandler();
        pih.setTarget(userService);//设置要代理的对象
        UserService proxy = (UserService) pih.getProxy();//动态生成代理类
        proxy.delete();
    }
}
           

执行结果:

Spring学习(二)代理模式(静态代理、动态代理)、Spring AOP

动态代理的优点:

  • 一个动态代理类可以代理多个类。
  • 一个动态代理类代理的是一个接口,实际上就是对应的一类业务。

二、Spring AOP

AOP(Aspect Oriented Programming)意为:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。 AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。

1、Aop在Spring中的作用
提供了声明式的事务,并允许用户自定义切面。

术语了解:

  • 横切关注点: 跨越应用程序多个模块的方法或功能。即是,与我们业务逻辑无关的,但是我们需要关注的部分,就是横切关注点。如日志 , 安全 , 缓存 , 事务等等 …
  • 切面(ASPECT): 横切关注点 被模块化 的特殊对象。即,它是一个类。
  • 通知(Advice): 切面必须要完成的工作。即,它是类中的一个方法。
  • 目标(Target): 被通知对象。
  • 代理(Proxy): 向目标对象应用通知之后创建的对象。
  • 切入点(PointCut): 切面通知 执行的 “地点”的定义。
  • 连接点(JointPoint): 与切入点匹配的执行点。
Spring学习(二)代理模式(静态代理、动态代理)、Spring AOP
2、使用Spring实现Aop

搭建环境:

Maven需要导入的依赖

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

业务代码

//接口
package com.zyh.service;

public interface UserService {
    public void add();
    public void delete();
    public void update();
    public void select();
}

//实现类
package com.zyh.service;

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 select() {
        System.out.println("查询用户");
    }
}

           

日志

package com.zyh.log;

import org.springframework.aop.MethodBeforeAdvice;

import java.lang.reflect.Method;

public class Log implements MethodBeforeAdvice {
    /**
     * @param method 要执行的目标对象的方法
     * @param args   参数
     * @param target 目标对象
     * @throws Throwable
     */
    public void before(Method method, Object[] args, Object target) throws Throwable {
        System.out.println("执行了" + target.getClass().getName() + "的" + method.getName());
    }
}

package com.zyh.log;

import org.springframework.aop.AfterReturningAdvice;

import java.lang.reflect.Method;

public class AfterLog implements AfterReturningAdvice {

    public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
        System.out.println("执行了" + target.getClass().getName() + "的" + method.getName() + ",返回结果为" + returnValue);
    }
}

           
方式1:Spring 原生API接口实现

applicationContext.xml

配置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: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/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd">

    <!--注册bean对象-->
    <bean id="userService" class="com.zyh.service.UserServiceImpl"/>
    <bean id="log" class="com.zyh.log.Log"/>
    <bean id="afterLog" class="com.zyh.log.AfterLog"/>

    <!--方式1:使用原生的API接口-->
    <!--配置aop:必须导入aop的约束-->
    <aop:config>
        <!--设置切入点-->
        <aop:pointcut id="pointcut" expression="execution(* com.zyh.service.UserServiceImpl.*(..))"/>

        <!--执行环绕增加-->
        <aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
        <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
    </aop:config>
</beans>
           

测试:

import com.zyh.service.UserService;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyTest {
    @Test
    public void test1() {
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        UserService userService = (UserService) context.getBean("userService");
        userService.add();
    }
}

           

执行结果:

Spring学习(二)代理模式(静态代理、动态代理)、Spring AOP
方式2:自定义类实现Aop(定义切面)

切点:

package com.zyh.diy;

public class DiyPointCut {
    public void before() {
        System.out.println("------------方法执行前------------");
    }

    public void after() {
        System.out.println("------------方法执行后------------");
    }
}

           

配置:

<!--方式2:自定义实现Aop,定义切面,一个类-->
    <bean id="diyPointCut" class="com.zyh.diy.DiyPointCut"/>
    <aop:config>
        <!--定义切面,ref=要引用的类-->
        <aop:aspect ref="diyPointCut">
            <!--切入点-->
            <aop:pointcut id="point" expression="execution(* com.zyh.service.UserServiceImpl.*(..))"/>
            <!--通知-->
            <aop:before method="before" pointcut-ref="point"/>
            <aop:after method="after" pointcut-ref="point"/>
        </aop:aspect>
    </aop:config>
           

测试结果:

Spring学习(二)代理模式(静态代理、动态代理)、Spring AOP
方式3:使用注解实现AOP

applicationContext.xml

配置

<!--方式3:使用注解-->
    <bean id="annotionPointCut" class="com.zyh.diy.AnnotationPointCut"/>
    <!--开启使用注解支持-->
    <aop:aspectj-autoproxy/>
           

注解配置切入点:

package com.zyh.diy;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;

@Aspect
public class AnnotationPointCut {
    @Before("execution(* com.zyh.service.UserServiceImpl.*(..))")
    public void before(){
        System.out.println("---------方法执行前----------");
    }
    @After("execution(* com.zyh.service.UserServiceImpl.*(..))")
    public void after(){
        System.out.println("---------方法执行后----------");
    }

    @Around("execution(* com.zyh.service.UserServiceImpl.*(..))")
    public void around(ProceedingJoinPoint joinPoint) throws Throwable {
        System.out.println("环绕前");
        System.out.println(joinPoint.getSignature());//获得方法执行信息
        Object proceed = joinPoint.proceed();//执行方法
        System.out.println("环绕后");
        System.out.println(proceed);
    }
}

           

测试结果:

Spring学习(二)代理模式(静态代理、动态代理)、Spring AOP

Spring AOP 的基本了解就这些。