IDEA has a problem: the breakpoint is not available No executable code found solution

Intellij IDEA use tutorial related series catalog

In the project under Intellij, dubug started the project after updating the SVN, and found that some code breakpoints showed a red fork, and it has been unable to enter the breakpoint.

After moving the mouse on the red fork, it displays: "No executable code found at line".

As shown

Solution:
1. Clean the entire project;
2. Ctr+F9 to execute make project;
3. Restart the project and debug can be used normally;

Reason analysis:
Intellij did not recompile the code updated by SVN, or Intellij did not think that part of the changed code was compiled and generated by it, resulting in unbreakable points. Forcing Intellij to clean up and recompile the code can solve this problem.

Guess you like

Origin blog.csdn.net/shi_hong_fei_hei/article/details/112636374