java - Eclipse 在 processWorkerExit 上中断

标签 java debugging tomcat thread-safety breakpoints

在处理了几个请求后,我的 eclipse 开始中断 processWorkerExit() 方法。

根据这个link我知道如何抑制 eclipse 的中断,但是是否有任何原因导致代码在此行中断。在这种情况下会不会有内存泄漏?

Tomcat 7.0.27
eclipse 3.7.2
JDK 7.0.02

enter image description here

最佳答案

答案在这里:OpenJDK breaks on processWorkerExit with no breakpoint

In debug mode in eclipse by default, break on uncaught exceptions is checked. Since you don't have a catch method here, it's likely that an uncaught exception is being thrown and the debugger is breaking for you immediately before the exception is thrown. You can turn it off in preferences under Java->Debug.

关于java - Eclipse 在 processWorkerExit 上中断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10356905/

相关文章:

java - jackson JSON : Unrecognized field, 未标记为可忽略

c - 不使用反汇编程序扫描 'call' 指令?

html - 查看xsl转换后的xml文档的html源码

c - 是否可以在 SIGSEGV 处理程序中暂停 C 程序以进行进一步调查?

windows - Tomcat 多个实例同时

java - 在java中打开文件给出异常

java - 对于Java BigInteger类,有没有办法定义一个具有多个条件的if语句,并用逻辑运算符分隔?

tomcat - 在 Tomcat 中部署 WAR 时打印自定义消息

jakarta-ee - Tomcat 7 和 Java EE 6.0 javax.annotation.sql 包

java - 处理大量 Swing 组件