I'm running tomcat 7.0.21 on OpenJDK

java version "1.6.0_20"
OpenJDK Runtime Environment (IcedTea6 1.9.9) (6b20-1.9.9-0ubuntu1~10.10.2)
OpenJDK 64-Bit Server VM (build 19.0-b09, mixed mode)

in debug mode via Eclipse.

Periodically after serving an arbitrary number of requests, OpenJDK starts to break at:

break in ThreadPoolExecutor

At this point there is very little stack left, usually:

stack position

and very little to go on as far as what might have cause the issue...

Anyone have any insight on what might be happening?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

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.

link|improve this answer
That was it! Thanks dlawrence! – Ray Sep 17 '11 at 20:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.