View Source
Tomcat will always process XML descriptors first, then packaged WARs, and
then exploded WARs. However, Tomcat does not have a predictable load order
for the XML descriptors or the WARs. It relies on Java's
java.io.File.list() implementation which is not predictable.
This class overrides several of the deploy methods to ensure that the files
are always processed alphabetically (case sensitive).
To use this class, modify Tomcat's conf/server.xml. Find the
Host element and add the attribute hostConfigClass .
See http://support.liferay.com/browse/LEP-2346.
See org.apache.catalina.startup.HostConfig .
author: Brian Wing Shun Chan |