Eclipse - showing full call stack (like when it hits breakpoint in debugger) without putting in breakpoints?

前端 未结 6 1209
春和景丽
春和景丽 2020-12-09 11:06

I\'m working with a legacy Java app that is new to me so one way to figure out how it works and find things easier, I have thought would be to be able to get the full stack

6条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-09 11:45

    When you are in the debugger perspective, you will see a view showing the launched processes. In that view you can tell it to pause all threads of a process. Once stopped, you will be able to browse through threads to see what they are all doing. To try to catch what a particular action is doing, you would have to start the action and then quickly pause all threads.

提交回复
热议问题