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.
Class
ListOrderedMapis 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/libfolder inside the WAR file.