Debug eclipse IDE itself

前端 未结 5 1237
别跟我提以往
别跟我提以往 2020-12-14 13:21

I would love to learn how to debug eclipse IDE. Back to the time when I was using VS for .NET development, I can attach VS to a process at anytime and start to trace down th

5条回答
  •  天涯浪人
    2020-12-14 13:35

    One thing you can do with any Java application to see what is going on right now is send it a kill -QUIT. This will cause the JVM to dump the stack traces for all of its threads to stdout. Do this three times with a second in between and you can see which threads are not moving along nicely.

    Another thing to try is to attach a JConsole to the running process.

提交回复
热议问题