vote up 0 vote down star

I have a tomcat application which, the first time I start Tomcat after starting eclipse, I get a n odd NoClassDefFoundError. If I then stop and restart tomcat through eclipse, it works fine. I have single, double, and triple checked the classpath and everything seems fine. Anyone ever seen anythign like this before?

relevant versions:

Tomat 5.5.17
eclipse 3.3 europa
tomcat plug-in for eclipse by sysdeo:
com.sysdeo.eclipse.tomcat_3.2.1

flag

71% accept rate
Can you post the stack trace? – Steve K Oct 9 '08 at 14:17
yeah ... w/o stack trace any help given is random – Pat Mar 27 at 21:23

5 Answers

vote up 1 vote down

I had problems like these as well, I think I solved it by linking in a whole folder of classes, a different folder though, there were copies of the libraries in a few places, and the Tomcat server needs the libraries from it's runtime imported into the project.

link|flag
vote up 0 vote down

What is the class that is missing? Have you trying starting and stopping tomcat with wtp instead of sysdeo?

link|flag
vote up 0 vote down

I've found the tomcat plugin to be generally buggy, and have stopped using it.

In my consulting job, I worked with a team that had all manner of stability issues with their application in development. Removing the tomcat plugin, and just having them start/stop tomcat from the command-line fixed all of the issues.

link|flag
vote up 1 vote down

I notice that this is a pretty old version of Tomcat, that might be contributing to the problem. You could try the following

  1. Start Eclipse.
  2. Clean your webapp project (build if automatic build is off)
  3. Start the Tomcat server.

That's the only thing I can think of. Other than that I would recommend getting the latest 5.5 version of tomcat (I think it is 5.5.25)

link|flag
vote up -1 vote down

Nope, never saw it. It is very unlikely that the class is present and that it is a classloader problem. What is the class that is missing. It is probably that it is occasionally going through some error condition

e.g. trying to open a port that is already open

and the error is causing it to try and load this specific class

link|flag

Your Answer

Get an OpenID
or

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