一、前章回顾
在前一章“《学习笔记》之java设计模式--代理模式(动态)(一)”中我们分别使用jdk自带的动态代理和cglib动态代理为数据库增加了日志记录功能。然而,生成的动态代理类到底是个什么样子呢?本章我们就一起来揭开它的庐山真面目。
我们先来看看生成的动态代理类是什么类型,对前一章第二节中示例的客户端进行如下简单修改,将生成的动态代理类实例的类型打印到控制台。
import java.lang.reflect.proxy;
public class mainclass {
public static void main(string[] args) {
// 创建用来处理代理对象请求的调用处理程序userhandler
userdao userdao = new impuserdao();
databaseloghandler userhandler = new databaseloghandler(userdao);
// 创建用来处理代理对象请求的调用处理程序documenthandler
documentdao doucumentdao = new impdocumentdao();
databaseloghandler documenthandler = new databaseloghandler(doucumentdao);
// 开始创建代理对象,分别实现接口userdao和documentdao
userdao userproxy = (userdao) proxy.newproxyinstance(userdao.class.getclassloader(),
new class[] { userdao.class }, userhandler);
documentdao documentproxy = (documentdao) proxy.newproxyinstance(documentdao.class.getclassloader(),
new class[] { documentdao.class }, documenthandler);
// 将两个代理类的类型打印到控制台
system.out.println("实现了userdao接口的动态代理类型为:" userproxy.getclass());
system.out.println("实现了documentdao接口的动态代理类型为:" documentproxy.getclass());
// 接下来我们再创建两个动态代理类对象,二者都实现userdao和documentdao两个接口,只是接口实现的先后顺序不同
userdao udproxy = (userdao) proxy.newproxyinstance(userdao.class.getclassloader(),
new class[] { userdao.class, documentdao.class }, userhandler);
documentdao duproxy = (documentdao) proxy.newproxyinstance(documentdao.class.getclassloader(),
new class[] { documentdao.class, userdao.class }, documenthandler);
// 将这两个代理类的类型也打印到控制台
system.out.println("实现了userdao和documentdao接口的动态代理类型为:" udproxy.getclass());
system.out.println("实现了documentdao和userdao接口的动态代理类型为:" duproxy.getclass());
}
}
运行程序打印结果如下:
实现了userdao接口的动态代理类型为:class $proxy0
实现了documentdao接口的动态代理类型为:class $proxy1
实现了userdao和documentdao接口的动态代理类型为:class $proxy2
实现了documentdao和userdao接口的动态代理类型为:class $proxy3
原来生成的动态代理类都是形似 $proxy0、$proxy1、$proxy2、$proxy3 这种类型,同时,貌似生成的动态代理类的类型与传入方法newproxyinstance(classloader loader, class[] interfaces, invocationhandler h) 中的interfaces接口数组参数有关,而且接口数组中接口的先后顺序也会对最后生成的动态代理类的类型产生影响(这一点貌似sun做得不是很好)。
知晓了这一点,接下来我们再刨深点,看看这些代理类到底长什么样子,对mainclass再进行修改。
import java.lang.reflect.field;
import java.lang.reflect.method;
import java.lang.reflect.modifier;
import java.lang.reflect.proxy;
public class mainclass {
public static void main(string[] args) {
userdao userdao = new impuserdao();
databaseloghandler userhandler = new databaseloghandler(userdao);
userdao userproxy = (userdao) proxy.newproxyinstance(userdao.class.getclassloader(),
new class[] { userdao.class }, userhandler);
system.out.println("实现了userdao接口的动态代理类的类型为:" userproxy.getclass());
// 接下来我们在创建两个动态代理类对象,二者都实现userdao和documentdao两个接口,只是接口实现的先后顺序不同
userdao udproxy = (userdao) proxy.newproxyinstance(userdao.class.getclassloader(),
new class[] { userdao.class, documentdao.class }, userhandler);
system.out.println("实现了userdao和documentdao接口的动态代理类的类型为:" udproxy.getclass());
system.out.println("");
class userproxyclass = userproxy.getclass();
class udproxyclass = udproxy.getclass();
printclassdefinition(userproxyclass);
printclassdefinition(udproxyclass);
}
public static string getmodifier(int modifier) {
string result = "";
switch (modifier) {
case modifier.private:
result = "private";
case modifier.public:
result = "public";
case modifier.protected:
result = "protected";
case modifier.abstract:
result = "abstract";
case modifier.final:
result = "final";
case modifier.native:
result = "native";
case modifier.static:
result = "static";
case modifier.synchronized:
result = "synchronized";
case modifier.strict:
result = "strict";
case modifier.transient:
result = "transient";
case modifier.volatile:
result = "volatile";
case modifier.interface:
result = "interface";
}
return result;
}
public static void printclassdefinition(class clz) {
string clzmodifier = getmodifier(clz.getmodifiers());
if (clzmodifier != null && !clzmodifier.equals("")) {
clzmodifier = clzmodifier " ";
}
string superclz = clz.getsuperclass().getname();
if (superclz != null && !superclz.equals("")) {
superclz = "extends " superclz;
}
class[] interfaces = clz.getinterfaces();
string inters = "";
for (int i = 0; i < interfaces.length; i ) {
if (i == 0) {
inters = "implements " interfaces[i].getname();
} else {
inters = "," interfaces[i].getname();
}
}
system.out.println(clzmodifier clz.getname() " " superclz " " inters);
system.out.println("{");
field[] fields = clz.getdeclaredfields();
for (int i = 0; i < fields.length; i ) {
string modifier = getmodifier(fields[i].getmodifiers());
if (modifier != null && !modifier.equals("")) {
modifier = modifier " ";
}
string fieldname = fields[i].getname();
string fieldtype = fields[i].gettype().getname();
system.out.println(" " modifier fieldtype " " fieldname ";");
}
system.out.println();
method[] methods = clz.getdeclaredmethods();
for (int i = 0; i < methods.length; i ) {
method method = methods[i];
string modifier = getmodifier(method.getmodifiers());
if (modifier != null && !modifier.equals("")) {
modifier = modifier " ";
}
string methodname = method.getname();
class returnclz = method.getreturntype();
string retruntype = returnclz.getname();
class[] clzs = method.getparametertypes();
string paralist = "(";
for (int j = 0; j < clzs.length; j ) {
paralist = clzs[j].getname();
if (j != clzs.length - 1) {
paralist = ", ";
}
}
paralist = ")";
clzs = method.getexceptiontypes();
string exceptions = "";
for (int j = 0; j < clzs.length; j ) {
if (j == 0) {
exceptions = "throws ";
}
exceptions = clzs[j].getname();
if (j != clzs.length - 1) {
exceptions = ", ";
}
}
exceptions = ";";
string methodprototype = modifier retruntype " " methodname paralist exceptions;
system.out.println(" " methodprototype);
}
system.out.println("}");
}
}
运行程序打印结果如下:
实现了userdao接口的动态代理类型为:class $proxy0
实现了userdao和documentdao接口的动态代理类型为:class $proxy1
实现了userdao接口的动态代理类型为:class $proxy0
实现了userdao和documentdao接口的动态代理类型为:class $proxy1
$proxy0 extends java.lang.reflect.proxy implements userdao
{
java.lang.reflect.method m1;
java.lang.reflect.method m3;
java.lang.reflect.method m4;
java.lang.reflect.method m0;
java.lang.reflect.method m2;
java.lang.string login(java.lang.long, java.lang.string);
java.lang.string logout();
boolean equals(java.lang.object);
java.lang.string tostring();
int hashcode();
}
$proxy1 extends java.lang.reflect.proxy implements userdao,documentdao
{
java.lang.reflect.method m1;
java.lang.reflect.method m6;
java.lang.reflect.method m3;
java.lang.reflect.method m5;
java.lang.reflect.method m4;
java.lang.reflect.method m0;
java.lang.reflect.method m2;
java.lang.string login(java.lang.long, java.lang.string);
java.lang.string logout();
java.lang.string add(document);
boolean equals(java.lang.object);
java.lang.string tostring();
int hashcode();
java.lang.string delete(document);
}
这下子似乎是清晰了一点,生成的代理类继承了java.lang.reflect.proxy类,并实现了作为参数传入newproxyinstance()方法中的 class[] interfaces 接口数组,但由于java的反射机制并不能获取到方法体的具体内容,所以动态代理类方法体的具体内容我们还不得而知。为此,我们不得不另辟蹊径:使用class字节码文件反编译方法,以期待能够看到动态代理类中方法体的具体内容。
由于 proxy.newproxyinstance()方法在生成动态代理类字节码文件的时候会调用到 sun.misc.proxygenerator.generateproxyclass()方法,在 proxy.newproxyinstance()方法调用之前可以进行设置,将generateproxyclass()生成的代理类的字节码文件以 .class 文件的形式备份到当前java项目的根目录下,配置代码如下:
system.getproperties().put("sun.misc.proxygenerator.savegeneratedfiles", "true");
使用软件对上例中实现了userdao接口的代理类 $proxy0 的字节码文件进行反编译,其完整内容如下。
import java.lang.reflect.invocationhandler;
import java.lang.reflect.method;
import java.lang.reflect.proxy;
import java.lang.reflect.undeclaredthrowableexception;
public final class $proxy0
extends proxy
implements userdao {
private static method m1;
private static method m3;
private static method m4;
private static method m0;
private static method m2;
public $proxy0(invocationhandler invocationhandler) throws {
super(invocationhandler);
}
public final boolean equals(object object) throws {
try {
return (boolean)this.h.invoke(this, m1, new object[]{object});
}
catch (error | runtimeexception v0) {
throw v0;
}
catch (throwable var2_2) {
throw new undeclaredthrowableexception(var2_2);
}
}
public final string login(long l) throws {
try {
return (string)this.h.invoke(this, m3, new object[]{l});
}
catch (error | runtimeexception v0) {
throw v0;
}
catch (throwable var2_2) {
throw new undeclaredthrowableexception(var2_2);
}
}
public final string logout() throws {
try {
return (string)this.h.invoke(this, m4, null);
}
catch (error | runtimeexception v0) {
throw v0;
}
catch (throwable var1_1) {
throw new undeclaredthrowableexception(var1_1);
}
}
public final int hashcode() throws {
try {
return (integer)this.h.invoke(this, m0, null);
}
catch (error | runtimeexception v0) {
throw v0;
}
catch (throwable var1_1) {
throw new undeclaredthrowableexception(var1_1);
}
}
public final string tostring() throws {
try {
return (string)this.h.invoke(this, m2, null);
}
catch (error | runtimeexception v0) {
throw v0;
}
catch (throwable var1_1) {
throw new undeclaredthrowableexception(var1_1);
}
}
static {
try {
m1 = class.forname("java.lang.object").getmethod("equals", class.forname("java.lang.object"));
m3 = class.forname("userdao").getmethod("login", class.forname("java.lang.long"));
m4 = class.forname("userdao").getmethod("logout", new class[0]);
m0 = class.forname("java.lang.object").getmethod("hashcode", new class[0]);
m2 = class.forname("java.lang.object").getmethod("tostring", new class[0]);
return;
}
catch (nosuchmethodexception var1) {
throw new nosuchmethoderror(var1.getmessage());
}
catch (classnotfoundexception var1_1) {
throw new noclassdeffounderror(var1_1.getmessage());
}
}
}
通过对以上动态代理类字节码文件反编译的内容的观察,我们不难得出以下结论:
所谓动态代理,其实就是java.lang.reflect.proxy类动态地根据你所指定的接口生成一个class 字节码文件,该 class 会继承 proxy 类,并实现所有你指定的接口(您在newproxyinstance()方法的参数中传入的 class[] interfaces 接口数组)中的所有方法,同时,还会从java.lang.object继承equals()、tostring()、hashcode()三个方法;然后再利用你指定的类加载器(您在newproxyinstance()方法的参数中传入的 classloader loader)将 class 字节码文件加载进系统,最后生成这样一个类的对象,并初始化该对象的一些值、以及所有的 method 成员, 初始化之后将对象返回给调用的客户端,这样客户端拿到的就是一个实现你指定的所有接口的proxy对象了。然后,客户端在调用该动态代理对象的方法时会通过动态代理类中的 this.h.invoke()方法自动将请求转发给与动态代理对象关联的invocationhandler对象(您在newproxyinstance()方法的参数中传入的 invocationhandler h)的invoke()方法,由invoke()方法来实现对请求的统一处理并返回处理结果。