IntelliJ IDEA
JetBrains' premier Java IDE anticipating developer intentions with deep code understanding and intelligent completion
Debug master shortcuts for efficiently resolving complex bugs with advanced debugging features and breakpoint management
Shift+F9
Debug
Runs the current configuration in debug mode.
💡 Hint: Shift+F9 to debug
🎯 Launch application in debug mode to investigate bug causes
Ctrl+F8
Toggle Breakpoint
Toggles a breakpoint on the current line.
💡 Hint: Toggle with F8
🎯 Set or remove breakpoints on current line to pause execution
F8
Step Over
Executes the current line and moves to the next line.
💡 Hint: F8 to step over
🎯 Execute current line and proceed to next line without entering methods
F7
Step Into
Steps into the method.
💡 Hint: F7 to step into
🎯 Step into method calls to trace detailed processing flow
Shift+F8
Step Out
Steps out of the current method.
💡 Hint: Shift+F8 to step out
🎯 Step out of current method and return to caller
F9
Resume Program
Resumes program execution.
💡 Hint: F9 to resume
🎯 Resume program execution until next breakpoint
Alt+F8
Evaluate Expression
Evaluates an expression during debugging.
💡 Hint: Evaluate F8
🎯 Evaluate arbitrary expressions during debugging to check variable states
Ctrl+Shift+F8
View Breakpoints
Shows and manages all breakpoints.
💡 Hint: View breakpoints F8
🎯 Manage all breakpoints and set conditional breakpoints
Alt+F9
Run to Cursor
Runs to the cursor position.
💡 Hint: Run to cursor F9
🎯 Continue execution to cursor position and stop at specific line