欢迎来到天天文库
浏览记录
ID:38745993
大小:41.50 KB
页数:4页
时间:2019-06-18
《注解+动态代理的一个实例》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、学习下动态代理模式(关于代理的基础只是有很多帖子都有我就不重复了),做了个注解动态代理的例子,给那些学习注解或动态代理的初学者。花了将近1小时,没做个什么优化,大牛勿喷。几个主要的类:注解类:packagetest2;importjava.lang.annotation.ElementType;importjava.lang.annotation.Retention;importjava.lang.annotation.RetentionPolicy;importjava.lang.annotation.Target;@Retention(Reten
2、tionPolicy.RUNTIME)@Target(ElementType.METHOD)public@interfaceProxyTag{publicClassproxyClass();}代理类父类:importjava.lang.reflect.InvocationHandler;importjava.lang.reflect.Method;importjava.lang.reflect.Proxy;publicabstractclassProxyBeanimplementsInvocationHandler{privateObjecto;pr
3、ivateProxyBeanproxyBean;privateStringmethodName;publicObjectbind(Objectobj,ProxyBeanproxyBean,StringmethodName){this.o=obj;this.proxyBean=proxyBean;this.methodName=methodName;returnProxy.newProxyInstance(obj.getClass().getClassLoader(),obj.getClass().getInterfaces(),this);}publ
4、icObjectinvoke(Objectproxy,Methodmethod,Object[]obj)throwsThrowable{if(method.getName().equals(methodName)){proxyBean.before();Objectresult=method.invoke(o,obj);proxyBean.after();returnresult;}else{Objectresult=method.invoke(o,obj);returnresult;}}publicabstractvoidbefore();publ
5、icabstractvoidafter();}代理工厂:importjava.lang.reflect.Constructor;importjava.lang.reflect.InvocationTargetException;importjava.lang.reflect.Method;publicclassProxyFactory{publicstaticTgetProxyBean(Classclazz){Tt=(T)newInstance(clazz);Method[]methods=clazz.getMethods();for(i
6、nti=0;i7、.getConstructor();returncons.newInstance(newClass[]{});}catch(SecurityExceptione){//TODOAuto-generatedcatchblocke.printStackTrace();}catch(NoSuchMethodExceptione){//TODOAuto-generatedcatchblocke.printStackTrace();}catch(IllegalArgumentExceptione){//TODOAuto-generatedcatchblocke8、.printStackTrace();}catch(InstantiationExceptione){//T
7、.getConstructor();returncons.newInstance(newClass[]{});}catch(SecurityExceptione){//TODOAuto-generatedcatchblocke.printStackTrace();}catch(NoSuchMethodExceptione){//TODOAuto-generatedcatchblocke.printStackTrace();}catch(IllegalArgumentExceptione){//TODOAuto-generatedcatchblocke
8、.printStackTrace();}catch(InstantiationExceptione){//T
此文档下载收益归作者所有