本文共 1802 字,大约阅读时间需要 6 分钟。
Arthas
是Alibaba开源的Java诊断工具,深受开发者喜爱。
在新版本Arthas里,增加了在线教程,用户可以在线运行Demo,一步步学习Arthas的各种用法,推荐新手尝试:
非常欢迎大家来完善这些教程。
3.1.0
版本里新增命令mc
,不是方块游戏mc,而是Memory Compiler。
在之前版本里,增加了redefine
命令,可以热更新字节码。但是有个不方便的地方:需要把.class
文件上传到服务器上。
在3.1.0
版本里,结合jad
/mc
/redefine
可以完美实现热更新代码。
以 里的UserController
为例:
使用jad反编译代码
jad --source-only com.example.demo.arthas.user.UserController > /tmp/UserController.java
使用vim编译代码
当 user id 小于1时,也正常返回,不抛出异常:
@GetMapping("/user/{id}") public User findUserById(@PathVariable Integer id) { logger.info("id: {}" , id); if (id != null && id < 1) { return new User(id, "name" + id); // throw new IllegalArgumentException("id < 1"); } else { return new User(id, "name" + id); } }
使用mc
命令编译修改后的UserController.java
$ mc /tmp/UserController.java -d /tmpMemory compiler output:/tmp/com/example/demo/arthas/user/UserController.classAffect(row-cnt:1) cost in 346 ms
使用redefine
命令,因为可以热更新代码
$ redefine /tmp/com/example/demo/arthas/user/UserController.classredefine success, size: 1
在新版本里,改进了很多命令的自动补全,比如 watch/trace/tt/monitor/stack
等。
下面是watch命令的第一个Tab
补全结果,用户可以很方便的一步步补全类名,函数名:
$ watchcom. sun. javax. ch. io. demo. jdk. org. java.
另外,新增加了 jad/sc/sm/redefine
等命令的自动补全支持,多按Tab
有惊喜。
新版本的Web Console切换到了xtermd.js
,更好地支持现代浏览器。
Ctrl + C
复制Arthas支持Docker镜像了
参考:
之前的版本里,Arthas的重定向是会放到一个~/logs/arthas-cache/
目录里,违反直觉。
在新版本里,重定向和Linux下面的一致,>
/>>
的行为也和Linux下一致。
并且,增加了 cat
/pwd
命令,可以配置使用。
总之,3.1.0
版本的Arthas带了非常多的新功能,改进了很多的用户体验,欢迎大家使用反馈。
Release Note:
转载地址:http://jpjya.baihongyu.com/