From 4ab44ef404e82fd5c58ba6f1ea3c114f320a2b72 Mon Sep 17 00:00:00 2001 From: markt Date: Mon, 20 Jul 2009 13:17:37 +0000 Subject: [PATCH] Align the processing order. Need to scan WEB-INF before we scan all the JARs in the class loader hierarchy git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@795822 13f79535-47bb-0310-9956-ffa450edef68 --- java/org/apache/jasper/compiler/TldLocationsCache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/org/apache/jasper/compiler/TldLocationsCache.java b/java/org/apache/jasper/compiler/TldLocationsCache.java index 6474293ae..74622a300 100644 --- a/java/org/apache/jasper/compiler/TldLocationsCache.java +++ b/java/org/apache/jasper/compiler/TldLocationsCache.java @@ -242,8 +242,8 @@ public class TldLocationsCache { if (initialized) return; try { processWebDotXml(); - scanJars(); processTldsInFileSystem("/WEB-INF/"); + scanJars(); initialized = true; } catch (Exception ex) { throw new JasperException(Localizer.getMessage( -- 2.11.0