无标题文章

test


代理模式概述

假如你要想买二手房,你可能会想到去找中介,中介房源多,业务精通,会按照你的需求帮你买到心仪的房子,中介就是代理。在代码中,同样有这样的一种模式,只需要把类交给代理类,就可以实现这个类想要实现的一切,哪怕这个类只是个interface,里面的抽象方法照样可以被代理类按需求来实现及调用,这就是代理模式,所以代理模式中至关重要的一点就是代理类了,在Java中,分为静态代理与动态代理,而动态代理中比较有代表性的是JDK动态代理与cglib动态代理,大家可以自行查查各种代理的优劣势。下面是JDK动态代理的示例。

JAVA的动态代理,在MYBATIS中应用的很广,其核心就是写一个interface,但不写实现类,然后用动态代理来实例化并执行这个interface中的方法,话不多说,来看一个实现的例子:

先定义一个接口。JDK动态代理也称为接口代理,所以必须要有一个interface.

public interface TestProxy {

String hello();

}

虽然不写实现类,但仍然希望在执行这个hello()方法时,能输出想要输出的内容,比如把希望要输出的内容放在一个属性文件中:test.properties

hello=world

希望在调用hello方法时,输出world,接下来得解析这个属性文件:

public class PropertiesHandler {

private static Properties p = new Properties();

static{

try {

InputStream in = PropertiesHandler.class.getClassLoader().getResourceAsStream("test.properties");

p.load(in);

in.close();

} catch (IOException e) {

throw new RuntimeException("test.properties load error!");

}

}

public static String getProperty(String key){

try{

return p.getProperty(key, null);

}catch(Exception e){

e.printStackTrace();

}

return "";

}

}

解析完后,再写一个JDK动态代理类:(主角终于登场了)

public class ProxyImp implements InvocationHandler{

private Class proxyMethod;

public ProxyImp(Class proxyMethod) {

this.proxyMethod = proxyMethod;

}

@Override

public Object invoke(Object proxy, Method method, Object[] args)throws Throwable {

String value = PropertiesHandler.getProperty(method.getName());

System.out.println(value);

return null;

}

}

其原理就是在调用接口类方法时,动态代理类都会去执行这个invoke方法,以达到执行的目的,可以看到,在invoke方法里,把hello方法在属性文件中对应的值给取出来了,并输出。

接下来就是再封装一个代理工厂类来产生这个接口的一个实例:

public class ProxyImpFactory{

@SuppressWarnings("unchecked")

public static T newInstance(Class methodInterface) {

final ProxyImp proxyImp = new ProxyImp(methodInterface);

return (T) Proxy.newProxyInstance(Thread.currentThread().getContextClassLoader(),

new Class[]{methodInterface},

proxyImp);

}

}

可以从上面的代码中看出这个代理类会自动的生成一个接口实现类的实例。

接下来就是真正的调用了:

public static void main(String[] args) {

TestProxy tp = ProxyImpFactory.newInstance(TestProxy.class);

tp.hello();

}

输出就是:world

以上就是JDK动态代理的示例过程,其实也就是代理类的应用,代理模式并没有什么特别的,其代表的是一种思想,我们需要做的就是理解这种思想。至于代理模式在测试开发中的应用,得大家自已去挖掘了。

作者:张飞_

链接:http://www.jianshu.com/p/e4196eb2ddb3

來源:

著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

你可能感兴趣的:(无标题文章)