Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i'm developing a rest web service in java.

i'm using htmlparser library on it.

but when i try to run service i'm getting this exception. i can build it successfully. and org.htmlparser.beans.StringBean class exists in project.

exception

javax.servlet.ServletException: java.lang.RuntimeException: WEB9033: Unable to load class with name [org.htmlparser.beans.StringBean], reason: java.lang.NoClassDefFoundError: org/htmlparser/visitors/NodeVisitor

root cause

java.lang.RuntimeException: WEB9033: Unable to load class with name [org.htmlparser.beans.StringBean], reason: java.lang.NoClassDefFoundError: org/htmlparser/visitors/NodeVisitor

root cause

java.lang.NoClassDefFoundError: org/htmlparser/visitors/NodeVisitor

root cause

java.lang.ClassNotFoundException: org.htmlparser.visitors.NodeVisitor
share|improve this question
How did you solve it next.. – Dilip Rajkumar Mar 15 '12 at 12:03

1 Answer

Check that WEB-INF/lib/htmlparser.jar exists in the server.

share|improve this answer
htmlparser.jar and other jar files exist there. – user272483 Mar 23 '10 at 21:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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