23242526272829
* @param obj 实体 * @return */ public Object findInterface(String beanID, Object obj) { return Proxy.newProxyInstance(obj.getClass().getClassLoader(), obj.getClass().getInterfaces(), new InterceptionHandler(obj, beanID)); }