类加载器与双亲委派机制体会及分析与arthas使用
发布时间
阅读量:
阅读量
类加载器的分类

验证流程使用arthas
arthas下载地址
Releases · alibaba/arthas github.com

使用过程
想要被arthas识别到 需要让应用程序不退出 System.in.read();
随便运行一个类
public class HshbDemo {
public static final int a= 1;
public static void main(String[] args) throws IOException {
HshbDemo test4 = new HshbDemo();
System.out.println(a);
System.in.read();
全部评论 (0)
还没有任何评论哟~
