By debugging of Liferay Portal, that is tomcat application, eclipse make usual stop at ThreadPoolExecutor$Worker.run() line: 912
although I don't set a breakpoint at this class. The ThreadPoolExecutor
isn't a class of my application, I think that belongs to tomcat. My Question is: what is wrong here, and why eclipse stopt here?
And is it possible to set such "external breakpoints" in eclipse to ignore?
Asked
Active
Viewed 1.8k times
16
1 Answers
40
You can fix this immediately by opening the Markers view and delete the Java Exception Breakpoints.
However, to permanently remove this type of breakpoints, you have to go to the Java Debug options and uncheck the "Suspend excecution on uncaught exceptions" option. Then this type of breakpoints won't get added again in the future.

user1438038
- 5,821
- 6
- 60
- 94

gamerson
- 5,220
- 1
- 28
- 45
-
Unchecking "Suspend execution on uncaught exception" does not prevent those breakpoints from showing up. However, deleting them works till the next time your restart eclipse. – ScrappyDev Mar 26 '18 at 13:31
-
Even after deleting, it reappears once i restart eclipse. Is there anyway to delete permanantly? – Arun Nov 16 '18 at 07:07