JSP files with dependencies in JARs were recompiled on every access leading to poor performance.
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@
1148915 13f79535-47bb-0310-9956-
ffa450edef68
while (it.hasNext()) {
Entry<String,Long> include = it.next();
try {
- URL includeUrl = ctxt.getResource(include.getKey());
+ String key = include.getKey();
+ URL includeUrl;
+ if (key.startsWith("jar:")) {
+ includeUrl = new URL(key);
+ } else {
+ includeUrl = ctxt.getResource(include.getKey());
+ }
if (includeUrl == null) {
return true;
}
</fix>
</changelog>
</subsection>
+ <subsection name="Jasper">
+ <changelog>
+ <fix>
+ <bug>51532</bug>: JSP files with dependencies in JARs were recompiled on
+ every access leading to poor performance. (markt)
+ </fix>
+ </changelog>
+ </subsection>
<subsection name="Web applications">
<changelog>
<fix>