摘要:
package com.czp.util;import java.lang.reflect.InvocationHandler;import java.lang.reflect.Method;import java.lang.reflect.Proxy;/** * 代理生成工厂,要求其子类实现before(...),after(...),onException(...) 实现处理业务 * * @author caozhongping * */public abstract class ProxyFacty<T> implements InvocationHandler { priv 阅读全文
posted @ 2013-01-17 22:03 NotOnlyJava 阅读(784) 评论(2) 推荐(1) 编辑