I have a series of dependent Java projects. I'd like to package them together into a single JAR file to be used in my WAR file. These projects depend on a large number of external libraries and projects such as log4j, apache-commons etc.
I select all the projects in Eclipse and export as a JAR file, then copy the JAR file into my /WEB-INF/lib folder of my WAR, then deploy my application. I have the following problems:
ClassNotFoundException. The web application cannot find the libraries packaged into my JAR file. I solved this problem by moving out all the dependent libraries into the /WEB-INF/lib folder and adding class-path entries into the MANIFEST.MF of the JAR, a thoroughly painful process.
The classes in the JAR file cannot find property files packaged inside the JAR. How do I solve this problem?
Is there a standard solution for these problems? Thanks.
WEB-INF/lib? (Also: you don't need any Class-Path entries, the webapp automatically has access to all jar files inWEB-INF/lib). – Joachim Sauer Aug 1 '11 at 11:37