Breakpoint debugging shortcuts

IDEA server
F8 code executes one line down and
F7 enters into a certain method. If you need to jump out, press F8 to proceed to the next step.
F9 program executes downwards until the execution reaches the next breakpoint. Execute to the end

Chrome client, mainly used for js
F10 code to execute a line of
F11 down to enter a method
F8 to execute to the end

Guess you like

Origin blog.csdn.net/qq_44752641/article/details/112687585