之前介绍过了arthas
这个阿里的开源 Java 诊断工具,实在是非常好用。这里赶紧补上了快速入门的视频。
基本内容就是,介绍、安装、启动和几个基础命令。
官方文档地址如下:https://alibaba.github.io/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()
}
}