浅谈Java反射与代理
java反射机制与动态代理,使得java更加强大,spring核心概念ioc、aop就是通过反射机制与动态代理实现的。
1 java反射
示例:
user user = new user(); user.settime5flag("test"); class<?> cls = class.forname("com.test.user"); //接口必须public,无论是否在本类内部使用!或者使用cls.getdeclaredmethod(),或者遍历修改可访问性 method method = cls.getmethod("gettime5flag"); string res1 = (string) method.invoke(user); system.out.println(res1); //涉及到基本类型如int,则使用int.class!integer.class!=int.class! method = cls.getmethod("settime5flag", string.class); method.invoke(user, "rollen"); method = cls.getmethod("gettime5flag"); string res2 = (string) method.invoke(user); system.out.println(res2);
通过一个对象获得完整的包名和类名:
user.getclass().getname();//全路径类名 user.getclass().getsimplename();//无包名的类名
获取class:
class.forname("com.test.user"); com.test.user.class; user.getclass();
user user = (user) cls.newinstance();//必须有无参构造函数
constructor<?> cons[]=cls.getconstructors(); //按声明顺序返回 cons[0].newinstance();//无显示声明,则有默认构造函数
class<?> intes[] = cls.getinterfaces();
cls.getsuperclass();
int mo = cls.getmodifiers(); int mo = cons[0].getmodifiers(); int mo = method.getmodifiers(); modifier.tostring(mo);
method.getparametors(); cons[0].getparametors();
method.getparametortypes(); cons[0].getparametortypes();
method.getexceptiontypes();
field[] field = cls.getdeclaredfields(); //包括private field[0].getmodifiers(); field[0].gettype();
获取本类的全部公开属性,包括父类声明、接口声明、本类声明的所有public属性
cls.getfields();
设置指定属性可访问
field.setaccessible(true); field.set(obj,'ces'); field.get(obj);
* getfields()与getdeclaredfields()区别:getfields()只能访问类中声明为公有的字段,私有的字段它无法访问,能访问从其它类继承来的公有字段;getdeclaredfields()能访问类中所有的字段,与public,private,protect无关,但不能访问从其它类继承来的字段
* getmethods()与getdeclaredmethods()区别:getmethods()只能访问类中声明为公有的方法,私有的方法它无法访问,能访问从其它类继承来的公有方法;getdeclaredmethods()能访问类中所有的字段,与public,private,protect无关,不能访问从其它类继承来的方法
* getconstructors()与getdeclaredconstructors()区别:getconstructors()只能访问类中声明为public的构造函数;getdeclaredconstructors()能访问类中所有的构造函数,与public,private,protect无关
通过反射获取并修改数组的信息
int[] temp={1,2,3,4,5}; class<?> demo = temp.getclass().getcomponenttype(); system.out.println("数组类型: "+demo.getname());//int system.out.println("数组长度: "+array.getlength(temp));//5 system.out.println("数组的第一个元素: "+array.get(temp, 0));//1 array.set(temp, 0, 100); system.out.println("修改之后数组第一个元素为: "+array.get(temp, 0));//100
cls.getcomponenttype();
cls.isarray();
2 java代理
代理模式是常用的java设计模式,它的特征是代理类与委托类有同样的接口,代理类主要负责为委托类预处理消息、过滤消息、把消息转发给委托类,以及事后处理消息等。代理类与委托类之间通常会存在关联关系,一个代理类的对象与一个委托类的对象关联,代理类的对象本身并不真正实现服务,而是通过调用委托类的对象的相关方法,来提供特定的服务。
按照代理的创建时期,代理类可以分为2种。
•静态代理:由程序员创建或特定工具自动生成源代码,再对其编译。在程序运行前,代理类的.class文件就已经存在了。
•动态代理:在程序运行时,由java反射机制动态生成字节码。
2.1 静态代理
public interface count { public void querycount(); } public class countimpl implements count { public void querycount() { system.out.println("查看账户方法..."); } } //代理类 public class countproxy implements count { private countimpl countimpl; public countproxy(countimpl countimpl) { this.countimpl = countimpl; } @override public void querycount() { system.out.println("事务处理之前"); countimpl.querycount(); // 调用委托类的方法; system.out.println("事务处理之后"); } } //测试类 public class testcount { public static void main(string[] args) { countimpl countimpl = new countimpl(); countproxy countproxy = new countproxy(countimpl); countproxy.querycount(); } }
观察代码可以发现每一个代理类只能为一个接口服务,这样一来程序开发中必然会产生过多的代理,而且,所有的代理操作除了调用的方法不一样之外,其他的操作都一样,则此时肯定是重复代码。解决这一问题最好的做法是可以通过一个代理类完成全部的代理功能,那么此时就必须使用动态代理完成。
2.2 动态代理
动态代理类的字节码在程序运行时由java反射机制动态生成,无需程序员手工编写它的源代码。动态代理类不仅简化了编程工作,而且提高了软件系统的可扩展性,因为java 反射机制可以生成任意类型的动态代理类。
2.2.1 jdk动态代理
java.lang.reflect 包中的proxy类和invocationhandler 接口提供了生成动态代理类的能力。
invocationhandler接口:
public interface invocationhandler {
public object invoke(object proxy,method method,object[] args) throws throwable;
}
参数说明:
object proxy:指被代理的对象。
method method:要调用的方法
object[] args:方法调用时所需要的参数
可以将invocationhandler接口的子类想象成一个代理的最终操作类,替换掉proxysubject。
proxy类:
proxy类是专门完成代理的操作类,可以通过此类为一个或多个接口动态地生成实现类,此类提供了如下的操作方法:
public static object newproxyinstance(classloader loader, class<?>[] interfaces, invocationhandler h) throws illegalargumentexception
参数说明:
classloader loader:类加载器
class<?>[] interfaces:得到全部的接口
invocationhandler h:得到invocationhandler接口的子类实例
如果想要完成动态代理,首先需要定义一个invocationhandler接口的子类,以完成代理的具体操作。
interface subject { public string say(string name, int age); } class realsubject implements subject { @override public string say(string name, int age) { return name + " " + age; } } //jdk动态代理类 class myinvocationhandler implements invocationhandler { private object target = null; //绑定委托对象并返回一个代理类 public object bind(object target) { this. target = target; return proxy.newproxyinstance(target.getclass().getclassloader(), target.getclass().getinterfaces(), this); //要绑定接口(cglib弥补了这一点) } @override public object invoke(object proxy, method method, object[] args) throws throwable { system.out.println(“before method!”); object temp = method.invoke(target, args); system.out.println(“after method!”); return temp; } } class hello { public static void main(string[] args) { myinvocationhandler demo = new myinvocationhandler(); subject sub = (subject) demo.bind(new realsubject()); string info = sub.say("rollen", 20); system.out.println(info); } }
但是,jdk的动态代理依靠接口实现,如果有些类并没有实现接口,则不能使用jdk代理,这就要使用cglib动态代理了。
2.2.2 cglib动态代理
jdk的动态代理机制只能代理实现了接口的类,而未实现接口的类就不能实现jdk的动态代理。
cglib是针对类来实现代理的,它的原理是对指定的目标类生成一个子类,并覆盖其中方法实现增强,但因为采用的是继承,所以不能对final修饰的类进行代理。
public interface bookfacade { public void addbook(); } public class bookfacadeimpl1 { public void addbook() { system.out.println("增加图书的普通方法..."); } } import java.lang.reflect.method; import net.sf.cglib.proxy.enhancer; import net.sf.cglib.proxy.methodinterceptor; import net.sf.cglib.proxy.methodproxy; //cglib动态代理类 public class bookfacadecglib implements methodinterceptor { private object target; //绑定委托对象并返回一个代理类 public object getinstance(object target) { this.target = target; enhancer enhancer = new enhancer(); enhancer.setsuperclass(this.target.getclass()); // 回调方法 enhancer.setcallback(this); // 创建代理对象 return enhancer.create(); } @override // 回调方法 public object intercept(object obj, method method, object[] args, methodproxy proxy) throws throwable { system.out.println("事物开始"); object temp = proxy.invokesuper(obj, args); system.out.println("事物结束"); return temp; } } public class testcglib { public static void main(string[] args) { bookfacadecglib cglib = new bookfacadecglib(); bookfacadeimpl1 bookcglib = (bookfacadeimpl1)cglib.getinstance(new bookfacadeimpl1()); bookcglib.addbook(); } }
以上这篇浅谈java反射与代理就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: Java中枚举的使用详解