vote up 1 vote down star

Running Tomcat through eclipse works fine in non-debug mode, but not in debug mode. When I try to start the Tomcat server in debug mode, the console output looks fine for a while, but then starts slowing down and eventually just stops, pegging the cpu at 100%. I don't think it's relevant, but just in case - here's the console output right about when it starts slowing down and eventually stopping (by stopping I mean no more console output, but still 100% cpu).

2009-09-02 14:35:30,859 INFO   NONE org.springframework.context.weaving.DefaultContextLoadTimeWeaver:72 - Found Spring's JVM agent for instrumentation
2009-09-02 14:35:49,562 INFO   NONE org.springframework.beans.factory.support.DefaultListableBeanFactory:414 - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@ed889d: defining beans [...
2009-09-02 14:37:31,031 INFO   NONE org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean:221 - Building JPA container EntityManagerFactory for persistence unit ...

I tried everything I could think of to fix it:

  • cleanesd tomcat working directory
  • restarted eclipse
  • restarted Windows
  • refreshed/cleaned all projects

I first had this problem last week using eclipse ganymede. I had been running fine in debug-mode for several months prior to this issue. I didn't make any significant changes to our project that would cause this. Eventually, I upgraded to eclipse galileo which solved my problem. Now 2 days later, I'm having the same problem in galileo. Like I said it works fine in non-debug mode. Any help is much appreciated.

I should add that other things work in debug mode - for instance junit tests, so it is something specific to tomcat.

flag

Did you try to cleanup your workspace. Sometimes it happens to me, then I'll just clean my workspace. Once the workspace is cleaned it works fine – Arun P Johny Sep 3 at 12:06

6 Answers

vote up 2 vote down check

I've gotten through the issue! Once I figured it out, I remember that this has happened before. I cleared all my breakpoints and it works fine. I have no idea why that would cause the outcome that is does, but it works.

link|flag
worked for me as well when I was having this problem today – Ayrad Nov 6 at 9:19
vote up 1 vote down

Thanks for answering your own question! Deleting my breakpoints brought my tomcat back to life. I was working with about 20 breakpoints. Sounds strange but works fine after deleting them.

link|flag
vote up 0 vote down

Hey, thanks! I have literally been running into this problem for MONTHS -- and actually avoiding running in debug mode as much as possible b/c the problem has been so bad. Wow, it doesn't make sense, but this does correct the problem. Thank you so much.

link|flag
glad to help - feel free to vote the question (and answer) up :-) – andersonbd1 Oct 21 at 13:07
He probably would if he could, but he hasn't enough rep... But I'm just gonna take his word for it. – sth Nov 7 at 18:04
vote up 0 vote down

This fixed my problem too. Running jUnit tests in Eclipse was fine running under the regular launcher but had become painfully slow in debug mode, and I was pulling my hair out looking for what I'd changed to make it slow down so much. After reading this thread I cleared all the breakpoints that had accumulated over time (many disabled) and it all came back to life.

link|flag
vote up 0 vote down

It works! I had 24 active breakpoints. I deleted all of them and these are the Tomcat debug mode starting times difference:

  • Before (24 active breakpoints): 115,624 ms
  • After (no breakpoints): 31,343 ms

Thank you very much.

link|flag
vote up 0 vote down

I just ran into this problem myself, and this solution helped me out. However - I only had 1 breakpoint, rather than the 20+ of other posters. My one breakpoint, however, was a method breakpoint and not a line breakpoint - I wonder if the multitude of method calls at tomcat startup combined with the method breakpoint could be causing this problem... I just tried a small experiment:

  1. Setting a line breakpoint and starting debug mode - 5 second startup (normal)
  2. Setting a method breakpoint and starting debug mode - ..... not willing to wait (> 90 seconds).

I'm guessing this is the problem.

link|flag

Your Answer

Get an OpenID
or

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