码迷,mamicode.com
首页 > 其他好文 > 详细

JDK及CGLIB动态代理-AOP4种增强

时间:2018-03-17 12:07:48      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:实现类   技术分享   factory   ram   oca   rgs   cglib   xml文件   自动   

动态代理 AOP底层实现:有接口自动应用的就是JDK动态代理
(1).JDK 在运行时运行时注入
本质:在内存中构建出接口的实现类
特点:被代理对象,必须有接口

实例:

技术分享图片
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
public class Test {
    public static void main(String[] args) {
      final SomeService service = new SomeServiceImpl();

      SomeService proxy =(SomeService)Proxy.newProxyInstance(service.getClass().getClassLoader(),
              service.getClass().getInterfaces(), new InvocationHandler() {
                  public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                      System.out.println("before=======");
                      method.invoke(service,args);
System.out.println("after========"); return null; } }); proxy.doSome(); } }
技术分享图片

Cglib 底层,注入,编译期已经注入了
本质:在内存中生成被代理类(目标类)的【子类】
特点:可以在没有接口的情况下代理
对于不使用接口的业务类,无法使用JDK动态代理,cglib采用非常底层的字节码技术,
可以为一个类创建子类

技术分享图片
import cn.SomeServiceImpl;
import org.springframework.cglib.proxy.Enhancer;
import org.springframework.cglib.proxy.MethodInterceptor;
import org.springframework.cglib.proxy.MethodProxy;

import java.lang.reflect.Method;


public class Test {
    public static void main(String[] args) {
        final SomeServiceImpl someService = new SomeServiceImpl();

        Enhancer enhancer = new Enhancer();

        enhancer.setSuperclass(someService.getClass());
        enhancer.setCallback(new MethodInterceptor() {
            public Object intercept(Object o, Method method, Object[] objects, MethodProxy methodProxy) throws Throwable {
                System.out.println("=======before");
                methodProxy.invoke(someService,objects);
                return null;
            }
        });
        SomeServiceImpl proxy = (SomeServiceImpl) enhancer.create();
        proxy.doSome();
    }
}
技术分享图片

 

接下来是四种增强

前置增强 MethodBeforeAdvice

技术分享图片
import org.springframework.aop.AfterReturningAdvice;

import java.lang.reflect.Method;

public class AfterAdvice implements AfterReturningAdvice {
    public void afterReturning(Object o, Method method, Object[] objects, Object o1) throws Throwable {
        System.out.println("after========");
    }
}
技术分享图片
技术分享图片
<bean id="service" class="cn.SomeServiceImpl"></bean>
<bean id="beforeAdvice" class="cn.BeforeAdvice"></bean> <bean id="proxyService" class="org.springframework.aop.framework.ProxyFactoryBean"> <property name="target" ref="service"></property> <property name="interceptorNames" value="beforeAdvice"></property> </bean>
技术分享图片

 

后置增强 AfterReturingAdvice

技术分享图片
import org.springframework.aop.AfterReturningAdvice;

import java.lang.reflect.Method;

public class AfterAdvice implements AfterReturningAdvice {
    public void afterReturning(Object o, Method method, Object[] objects, Object o1) throws Throwable {
        System.out.println("after========");
    }
}
技术分享图片

xml文件内容

技术分享图片
   <bean id="service" class="cn.SomeServiceImpl"></bean>

    <bean id="afterAdvice" class="cn.AfterAdvice"></bean>

    <bean id="proxyService" class="org.springframework.aop.framework.ProxyFactoryBean">
        <property name="target" ref="service"></property>
        <property name="interceptorNames" value="afterAdvice"></property>
    </bean>
技术分享图片

3.环绕增强

技术分享图片
import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;
public class HrAdvice implements MethodInterceptor {
    public Object invoke(MethodInvocation methodInvocation) throws Throwable {
        System.out.println("before====");
        methodInvocation.proceed();
        System.out.println("after====");
        return null;
    }
}
技术分享图片

xml文件

技术分享图片
   <bean id="service" class="cn.SomeServiceImpl"></bean>

    <bean id="hrAdvice" class="cn.HrAdvice"></bean>

    <bean id="proxyService" class="org.springframework.aop.framework.ProxyFactoryBean">
        <property name="target" ref="service"></property>
        <property name="interceptorNames" value="hrAdvice"></property>
    </bean>
技术分享图片

异常增强

public class MyThrowsAdvice implements ThrowsAdvice {
    public void afterThrowing(Exception e){
        System.out.println("网络异常......");
    }
}
技术分享图片
   <bean id="service" class="cn.SomeServiceImpl"></bean>

    <bean id="throwsAdvice" class="cn.MyThrowsAdvice"></bean>

    <bean id="proxyService" class="org.springframework.aop.framework.ProxyFactoryBean">
        <property name="target" ref="service"></property>
        <property name="interceptorNames" value="throwsAdvice"></property>
    </bean>

JDK及CGLIB动态代理-AOP4种增强

标签:实现类   技术分享   factory   ram   oca   rgs   cglib   xml文件   自动   

原文地址:https://www.cnblogs.com/buai/p/8587800.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!