Author: jboynes
Date: Tue Jan 27 16:47:56 2015
New Revision: 1655089
URL: http://svn.apache.org/r1655089
Log:
Fix for https://issues.apache.org/bugzilla/show_bug.cgi?id=57504
Initialize tldLocationsCache when creating the ServletContext
Modified:
tomcat/tc7.0.x/trunk/java/org/apache/jasper/JspC.java
Modified: tomcat/tc7.0.x/trunk/java/org/apache/jasper/JspC.java
URL:
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/jasper/JspC.java?rev=1655089&r1=1655088&r2=1655089&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/java/org/apache/jasper/JspC.java (original)
+++ tomcat/tc7.0.x/trunk/java/org/apache/jasper/JspC.java Tue Jan 27 16:47:56
2015
@@ -1467,6 +1467,7 @@ public class JspC extends Task implement
context.setInitParameter(Constants.XML_BLOCK_EXTERNAL_INIT_PARAM,
String.valueOf(isBlockExternal()));
+ tldLocationsCache = TldLocationsCache.getInstance(context);
rctxt = new JspRuntimeContext(context, this);
jspConfig = new JspConfig(context);
tagPluginManager = new TagPluginManager(context);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]