美文网首页
jstack 获取 thread dump

jstack 获取 thread dump

作者: Blossomed | 来源:发表于2019-11-16 20:19 被阅读0次

    jstack 12345 > 12345.tdump

    "http-nio-8080-exec-3" #19 daemon prio=5 os_prio=0 tid=0x00007f6efcaa0800 nid=0x79d0 waiting on condition [0x00007f6ef5b67000]

      java.lang.Thread.State: TIMED_WAITING (sleeping)

    at java.lang.Thread.sleep(Native Method)

    at com.example.demo.HelloController.topDemo(HelloController.java:31)

    http-nio-8080-exec-3 : thread name

    prio=5 : priority

    nid: thread id

    0x00007f6ef5b67000: thread address

    相关文章

      网友评论

          本文标题:jstack 获取 thread dump

          本文链接:https://www.haomeiwen.com/subject/bvquictx.html