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

前端 未结 6 1214
春和景丽
春和景丽 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:53

    You can always see where a method is called by clicking "Open Call Hierarchy" from eclipse (left click on the selected method or CTRL+ALT+H ). Also, you always can inspect where a method/class is defined by clicking "Open Declaration" (left click on the selected method/class or F3).

提交回复
热议问题