一、问题描述

在下载完了arthas后,直接通过java -jar arthas-boot.jar执行,就直接报错了。

二、原因

在arthas启动前,需要有java进程启动。

三、解决方法

在启动arthas之前先启动一个java程序

测试代码如下:

public class T15_FullGC_Problem01 {

    private static class CardInfo {
        BigDecimal price = new BigDecimal(0.0);
        String name = "张三";
        int age = 5;
        Date birthdate = new Date();

        public void m() {

        }
    }

    private static ScheduledThreadPoolExecutor executor = new ScheduledThreadPoolExecutor(50,
            new ThreadPoolExecutor.DiscardOldestPolicy());

    public static void main(String[] args) throws Exception {
        executor.setMaximumPoolSize(50);

        for (;;){
            modelFit();
            Thread.sleep(100);
        }
    }

    private static void modelFit(){
        List<CardInfo> taskList = getAllCardInfo();
        taskList.forEach(info -> {
            // do something
            executor.scheduleWithFixedDelay(() -> {
                //do sth with info
                info.m();

            }, 2, 3, TimeUnit.SECONDS);
        });
    }

    private static List<CardInfo> getAllCardInfo(){
        List<CardInfo> taskList = new ArrayList<>();

        for (int i = 0; i < 100; i++) {
            CardInfo ci = new CardInfo();
            taskList.add(ci);
        }

        return taskList;
    }
}

启动方法:java -Xms200M -Xmx200M -XX:+PrintGC T15_FullGC_Problem01

重新启动arthas:java -jar arthas-boot.jar

 

 

 

 

小编也有自己微信公众号:“JAVA菜鸟程序猿”,喜欢的可以关注下哦!

Logo

技术共进,成长同行——讯飞AI开发者社区

更多推荐