Maksim Borodov
Maksim Borodov

Reputation: 455

Uncaught exception from servlet java.lang.NoClassDefFoundError: org/apache/commons/lang/Validate

in my google app engine project Log section write out

java.lang.NoClassDefFoundError: org/apache/commons/lang/Validate...

I have read java.lang.NoClassDefFoundError: org/apache/commons/lang/Validate and did as it is written. But its' had no effect and my server is not working

Upvotes: 0

Views: 596

Answers (1)

Vijay Shanker Dubey
Vijay Shanker Dubey

Reputation: 4418

The exception says, No class def found. That mean the JVM is not able to load the said class file. You will have to make sure that this class is available in the commons-lang project.

Validate that you have commons-lang-<>.jar is added to class path of your project configuration. If not please do add the said jar file in the class path.

Upvotes: 1

Related Questions