How to trace code in eclipse?
eclipse
Solution
Start the Java code in with "Debug -> Run As... -> ..."
That enables the debugger. You can now set breakpoints in the left margin of the Java editor.
Use the buttons at the top to step into or over methods. If you hover over the buttons, you'll see the associated keyboard shortcuts.
Problem
I want to know that how can I trace java code in eclipse just like turbo c++ where we use f7 key to trace code or we can say to know step by step compiling of code? So which key should I need to use in eclipse to trace java coding?