Author: markt
Date: Mon Jul 20 13:17:37 2009
New Revision: 795822
URL: http://svn.apache.org/viewvc?rev=795822&view=rev
Log:
Align the processing order. Need to scan WEB-INF before we scan all the JARs in
the class loader hierarchy
Modified:
tomcat/trunk/java/org/apache/jasper/compiler/TldLocationsCache.java
Modified: tomcat/trunk/java/org/apache/jasper/compiler/TldLocationsCache.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/compiler/TldLocationsCache.java?rev=795822&r1=795821&r2=795822&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/jasper/compiler/TldLocationsCache.java
(original)
+++ tomcat/trunk/java/org/apache/jasper/compiler/TldLocationsCache.java Mon Jul
20 13:17:37 2009
@@ -242,8 +242,8 @@
if (initialized) return;
try {
processWebDotXml();
- scanJars();
processTldsInFileSystem("/WEB-INF/");
+ scanJars();
initialized = true;
} catch (Exception ex) {
throw new JasperException(Localizer.getMessage(
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]