I have included all the 6 jars (beanutils, lang, logging, collections, ezmorph, json-lib). Its working fine in simple struts application. But in my struts application, although I have included all jar files, its shows a NoClassDefFoundError about ListOrderedMap.

I don't know how to make my app know that class. But I have included like other required jars for different functionality.

Please help me to resolve this issue.

link|improve this question

32% accept rate
6  
That class is part of Apache Commons Collections. Check if you have the right version (3.0 or newer) of the Apache Commons Collections jar file in your classpath - if it's a web app, it should be in WEB-INF/lib of your war file. – Jesper Mar 7 '11 at 12:57
3  
@Jesper - that can be an answer as well. – Bozho Mar 7 '11 at 13:19
The specified jar is in WEB-INF/lib folder. Its is working perfectly in other apps. I dont know the problem. – Manoj Mar 8 '11 at 5:27
I am facing the same problem, did you ever manager to solve it ? – MTH May 31 '11 at 11:24
feedback

1 Answer

Class ListOrderedMap is part of Apache Commons Collections (since version 3.0).

To be able to use it, you must have the JAR file that contains it on the classpath. The JAR file is most likely named commons-collections-3.2.1.jar (or something similar).

If you are creating a web application packaged in a WAR file, then you should put the library in the WEB-INF/lib folder inside the WAR file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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