To what is the class path of a servlet container set to?
As per my understanding there are three components involved. The jars in the lib folder of the servlet container and then the classes in the WEB-INF/classes and jars in the WEB-INF/lib folder. The classes in lib folder of the servlet container are added to the system class path and the dynamic class path contains the jars in the lib folder and classes in the classes folder.
Where is the dynamic class path set to? Does the dynamic class path point to all the folders under WEB-INF or includes all the individual classes and jars in WEB-INF/lib and WEB-INF/classes or just points to the 2 folders WEB-INF/classes and WEB-INF/lib? Say I have a folder called foo in WEB-INF containing bar.properties. Now is bar.properties also in the class path?