看了很多关于此类的文章,都没说明白$Proxy0的代码如何获取,这儿就贴一段行之有效的方法吧
public class CodeUtil {
public static void main(String[]args)throws IOException {
byte[]classFile =ProxyGenerator.generateProxyClass("Proxy0",HumenImpl1.class.getInterfaces());
File file =new File("D:/test/demo/AOP/aoptest/demoaopproxy/Proxy0.class");
FileOutputStream fos =new FileOutputStream(file);
fos.write(classFile);
fos.flush();
fos.close();
}
}
不要太感谢我!