This Java web application that I use to write other developers is structured in a standard way. However, the files are .classnot located under WEB-INF/classes, they are instead grouped together in .jar and saved in WEB-INF/lib/myapp.jar.
The problem is that I cannot find where the program tells Tomcat to load myapp.jarfor class files. The application is working fine, but how does it know to download this myapp.jar?
I tried to grepmake my way through almost all conf files (in Tomcat and inside the application), and nowhere can I link to this file myapp.jar.
source
share