温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Spring api如何手动创建代理对象ProxyFactory

发布时间:2022-01-18 11:32:52 来源:亿速云 阅读:220 作者:柒染 栏目:大数据

这篇文章跟大家分析一下“Spring api如何手动创建代理对象ProxyFactory”。内容详细易懂,对“Spring api如何手动创建代理对象ProxyFactory”感兴趣的朋友可以跟着小编的思路慢慢深入来阅读一下,希望阅读后能够对大家有所帮助。下面跟着小编一起深入学习“Spring api如何手动创建代理对象ProxyFactory”的知识吧。

可以通过注解的方式来自定义代理对象的创建,同时也可以通过 SpringAPI,手动编程的方式来创建代理对象。

几个重要的API:

ProxyFactory

MethodInterceptor

Advice

AfterReturningAdvice

MethodBeforeAdvice

import java.lang.reflect.Method;

import org.aopalliance.intercept.Interceptor; 

import org.aopalliance.intercept.MethodInterceptor; 

import org.aopalliance.intercept.MethodInvocation; 

import org.junit.Test; 

import org.springframework.aop.AfterAdvice; 

import org.springframework.aop.AfterReturningAdvice; 

import org.springframework.aop.MethodBeforeAdvice; 

import org.springframework.aop.framework.ProxyFactory;

import cn.hessian.service.HelloWorldService; 

import cn.hessian.service.impl.HelloWorldServiceImpl2;

/** 

* @author beijing 

* 2013-4-2 

*/ 

public class SpringProgramicProxyDemo {

    @Test 

    public void test(){ 

        //代理对象需要的实现的接口 

        Class[] interfaces=new Class[]{HelloWorldService.class}; 

        //利用spring的API,创建代理工厂 

        ProxyFactory proxyFactory=new ProxyFactory(interfaces); 

        //设置目标对象 

        proxyFactory.setTarget(new HelloWorldServiceImpl()); 

        /** 

         * Set whether proxies created by this configuration should be prevented from being cast to Advised to query proxy status. 

            Default is "false", meaning that any AOP proxy can be cast to Advised. 

         * */ 

        proxyFactory.setOpaque(true); 

       //添加方法前置通知 

        proxyFactory.addAdvice(new MethodBeforeAdvice() { 

            @Override 

            public void before(Method method, Object[] args, Object target) 

                    throws Throwable { 

                System.out.println("1---在方法调用之前拦截"); 

            } 

        }); 

        //可以添加多个方法前置或者后置通知 

    proxyFactory.addAdvice(new MethodBeforeAdvice() { 

            @Override 

            public void before(Method method, Object[] args, Object target) 

                    throws Throwable { 

                System.out.println("2---在方法调用之前拦截"); 

            } 

        }); 

   //可以添加多个方法前置或者后置通知 

        proxyFactory.addAdvice(new AfterReturningAdvice() { 

            @Override 

            public void afterReturning(Object returnValue, Method method, 

                    Object[] args, Object target) throws Throwable { 

                System.out.println("方法完成之后调用的方法---1"); 

            } 

        }); 

       //可以添加多个方法前置或者后置通知 

        proxyFactory.addAdvice(new AfterReturningAdvice() { 

            @Override 

            public void afterReturning(Object returnValue, Method method, 

                    Object[] args, Object target) throws Throwable { 

                System.out.println("方法完成之后调用的方法---2"); 

            } 

        }); 

  //对于环绕通知只能添加一个,多添加也是没有用的,spring会选第一个advice,请看结果

        proxyFactory.addAdvice(new MethodInterceptor() { 

            @Override 

            public Object invoke(MethodInvocation invocation) throws Throwable { 

                System.out.println("1---环绕通知"); 

                Object[] params=invocation.getArguments(); 

                Method method=invocation.getMethod(); 

                Object target=invocation.getThis(); 

                Object bytes=method.invoke(target, params); 

                byte[] result=(byte[]) bytes; 

                System.out.println("1---环绕通知生成的结果:"+new String(result)); 

                return "北京生活圈".getBytes(); 

            } 

        }); 

       //对于环绕通知只能添加一个,多添加也是没有用的,spring会选第一个advice,请看结果 

proxyFactory.addAdvice(new MethodInterceptor() { 

            @Override 

            public Object invoke(MethodInvocation invocation) throws Throwable { 

                System.out.println("2---环绕通知"); 

                Object[] params=invocation.getArguments(); 

                Method method=invocation.getMethod(); 

                Object target=invocation.getThis(); 

                Object bytes=method.invoke(target, params); 

                byte[] result=(byte[]) bytes; 

                System.out.println("2---环绕通知生成的结果:"+new String(result)); 

                return bytes; 

            } 

        }); 

        Object proxy=proxyFactory.getProxy(proxyFactory.getClass().getClassLoader()); 

        Class[] inters=proxy.getClass().getInterfaces(); 

        for(Class str: inters ){ 

            System.out.println(str.getSimpleName()); 

        } 

        HelloWorldService helloWorldService=(HelloWorldService)proxy; 

        System.out.println(new String(helloWorldService.sayHelloWorld("北京"))); 

    } 

}

关于Spring api如何手动创建代理对象ProxyFactory就分享到这里啦,希望上述内容能够让大家有所提升。如果想要学习更多知识,请大家多多留意小编的更新。谢谢大家关注一下亿速云网站!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI