I'm working on my usual projects on Eclipse, it's a J2EE application, made with Spring, Hibernate and so on. I'm using Tomcat 7 for this (no particular reason, I don't exploit any new feature, I just wanted to try that). Every time I debug my application, it happens that Eclipse debugger pops out like it has reached a breakpoint, but it is not the case, in fact it stops on a Java source file that is ThreadPoolExecutor. There is no stack trace on the console, it just stops. Then if I click on resume it goes on and the app works perfectly. This is what shows in the debugger window:

Daemon Thread ["http-bio-8080"-exec-2] (Suspended (exception RuntimeException)) 
    ThreadPoolExecutor$Worker.run() line: 912   
    TaskThread(Thread).run() line: 619

我真的无法解释这一点,因为我根本没有使用ThreadPoolExecutor。必须是来自Tomcat, Hibernate或Spring的东西。这很烦人,因为在调试过程中我总是要重新开始。

有线索吗?


发布的堆栈跟踪指示在Daemon线程中遇到了RuntimeException。这通常在运行时未被捕获,除非原始开发人员捕获并处理了异常。

通常,Eclipse中的调试器被配置为在所有未捕获的异常上,在抛出异常的位置挂起执行。请注意,异常可能稍后在堆栈框架的较低位置处理,并且可能不会导致线程终止。这就是所观察到的行为的原因。

配置Eclipse的行为非常简单: 进入“窗口>首选项> Java >调试”,取消勾选“在未捕获的异常上暂停执行”。


有一个更具体的解决方案,它可以防止Eclipse在只从给定类抛出的runtimeexception上中断。

从Debugging透视图添加一个新的异常断点 转到属性栏 转到过滤 在“限制至选定位置”内,按“添加类别” 添加java.util.concurrent.ThreadPoolExecutor 取消复选框,意味着这些将被忽略


我注意到这种情况经常发生在修改服务器文件(jsp或java)之后,STS在重新加载应用程序时遇到麻烦。

这通常会导致重新启动服务器以使其同步更改。

在引入JRebel之后,它似乎已经消失了。所以,我认为这是一个可重复的问题,在STS热插拔代码在调试模式。

通过删除本机热插拔,它消除了在ThreadPoolExecutor类内部中断的问题。


当一个webapp被重新加载时,tomcat会触发这个行为。它是tomcat“内存泄漏保护”功能的一部分,该功能(除其他功能外)强制更新其线程。

tomcat 7.0.54和8.0.6版本修复了这个问题: https://issues.apache.org/bugzilla/show_bug.cgi?id=56492