之前介绍过了arthas这个阿里的开源 Java 诊断工具,实在是非常好用。这里赶紧补上了快速入门的视频。

基本内容就是,介绍、安装、启动和几个基础命令。

官方文档地址如下:https://alibaba.github.io/arthas/

本期视频演示的具体内容如下:

快速入门

  1. 启动 Demo
  2. 启动 arthas
  3. 查看 dashboard
  4. 通过 thread 命令来获取到进程
  5. watch
  6. 退出 arthas

arthas 快速入门

由于我并没有使用官方的演示Demo,自己随手写了一个,下面是代码:

package com.fun


import com.fun.frame.httpclient.FanLibrary
import com.fun.utils.RString

class sd extends FanLibrary {

    public static void main(String[] args) {

        while (true) {
            sleep(1000)
            RString.getStringWithoutNum(10)
            sleep(1000)
            String url = "https://api.apiopen.top/getAllUrl"
            def get = getHttpGet(url)
            def response = getHttpResponse(get)
        }
        testOver()
    }


}


技术类文章精选

无代码文章精选


↙↙↙阅读原文可查看相关链接,并与作者交流