java中使用asm实现动态创一个类动态代理
辅助代码:package com.test.bean;import java.lang.reflect.Method;public interface InvocationHandler { public Object invoke(Object proxy,String methodName,Method method,Object[] args);} import