Arthas 中 ognl 使用
2024年9月4日小于 1 分钟
参考文章
特殊用法
# 查看第一个参数
$ watch com.taobao.container.Test test "params[0].size()"
Press Ctrl+C to abort.
Affect(class-cnt:1 , method-cnt:1) cost in 22 ms.
@Integer[40]
# 按条件过滤
$ watch com.taobao.container.Test test "{params}" "params[0].{? #this.name == null }.size()>0" -x 2
Press Ctrl+C to abort.
Affect(class-cnt:1 , method-cnt:1) cost in 27 ms.
@ArrayList[
@Pojo[
name=null,
age=@Integer[32],
hobby=null,
],
]
@ArrayList[
@Pojo[
name=null,
age=@Integer[31],
hobby=null,
],
]