Day22 SSM之AOP动态代理

Spring AOP概念

  • (1)AOP(Aspect Oriented Programming)是面向切面编程。
    就是通过预编译方式和运行动态代理实现程序功能的统一维护的一种技术。
    简单说 就是在不改变方法原代码的基础上,对方法进行功能增强
    本质上是生成了一个新的类,叫做代理类
  • (2)AOP对程序的扩展方式采用动态代理的方式. (JDK动态代理Cglib动态代理两种方式)
    Day22 SSM之AOP动态代理_第1张图片
    Day22 SSM之AOP动态代理_第2张图片

Spring 动态代理

  • (1)JDK的动态代理
    》Proxy类的方法
    Proxy类的静态方法可以创建代理对象
    static Object newProxyInstance(ClassLoader loader, Class[] interfaces, InvocationHandler h)
    》三个参数
    参数1:ClassLoader loader 类加载器 , 用来加载代理对象
    参数2:Class[] interfaces 目标类的字节码对象数组. 因为代理的是接口,需要知道接口中所有的方法
    参数3:InvocationHandler h 执行句柄, 代理对象处理的核心逻辑就在该接口中
  • (2)案例:老总吃饭
    老总类
    秘书类

TestJDKProxy

public class TestJDKProxy {
    @Test
    public  void  Test02(){
        //Jdk代理
        //ILaoZong
        final LaoZong laoZong = new LaoZong();
        final MiShu miShu = new MiShu();
        //1 创建一个代理类,创建该类的对象
        ClassLoader classLoader = LaoZong.class.getClassLoader();
        Class[] interfaces= new Class[]{ILaoZong.class};
        //处理器
        InvocationHandler handler = new InvocationHandler() {
            @Override
            public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                //调 laibeijiu()
                miShu.laiBeiJiu();
                //调 eat()
                //laoZong.eat();
                //method 被增加的方法
                Object returnValue = method.invoke(laoZong,args);
                //调 laiGenYan()
                miShu.laiGenYan();
                return returnValue;
            }

        };
        ILaoZong iLaoZong = (ILaoZong) Proxy.newProxyInstance(classLoader,interfaces,handler);
        iLaoZong.eat();
    }
}

ILaoZong

public interface ILaoZong {
    void eat();
}

LaoZong

public class LaoZong implements ILaoZong {
    @Override
    public void eat() {
        System.out.println("eat san xia guo");
        System.out.println("eat wa wa cai");
    }
}

MiShu

public class MiShu {
    public void laiBeiJiu(){
        System.out.println("laiBeiJiu");
    }
    public void laiGenYan(){
        System.out.println("laiGenYan");
    }
}

执行测试类结果
Day22 SSM之AOP动态代理_第3张图片

你可能感兴趣的:(java,aop)