14

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?

enter image description here

4

1 回答 1

37

您可以通过打开标记视图并删除 Java 异常断点来立即解决此问题。

带有 Java 异常断点的标记视图

但是,要永久删除此类断点,您必须转到 Java Debug 选项并取消选中“Suspend execution on uncaught exceptions”选项。那么这种类型的断点以后就不会再添加了。

Eclipse 中的 Java 调试选项

于 2012-07-18T05:03:18.920 回答