码迷,mamicode.com
首页 > 其他好文 > 详细

InvocationHandler 动态代理

时间:2015-10-16 19:14:18      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

这货只能代理接口- -! 

public class TimeCaculateProxy implements InvocationHandler {

	private Class<?> obj;

	public static Object newInstance(Class<?> obj) {
		return java.lang.reflect.Proxy.newProxyInstance(obj.getClassLoader(),
				obj.getInterfaces(), new TimeCaculateProxy(obj));
	}

	private TimeCaculateProxy(Class<?> obj) {
		// Greet接口的實現:GreetImpl
		this.obj = obj;
	}

	public Object invoke(Object proxy, Method m, Object[] args)
			throws Throwable {
		Object result;
		try {
			// 自定義的處理
			System.out.println("--before method " + m.getName());
			// 調用GreetImpl中方法
			result = m.invoke(obj.newInstance(), args);
		} catch (InvocationTargetException e) {
			throw e.getTargetException();
		} catch (Exception e) {
			throw new RuntimeException("unexpected invocation exception: "
					+ e.getMessage());
		} finally {
			System.out.println("--after method " + m.getName());
		}
		return result;
	}
}


InvocationHandler 动态代理

标签:

原文地址:http://my.oschina.net/u/272065/blog/518090

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!