Don't initialize classes during compilation
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@
1079801 13f79535-47bb-0310-9956-
ffa450edef68
}
try {
- clazz = Class.forName(className, true, tccl);
+ clazz = Class.forName(className, false, tccl);
} catch (ClassNotFoundException e) {
throw new JasperException(e);
}
Correct possible threading issue in JSP compilation when development
mode is used. (markt)
</fix>
+ <fix>
+ <bug>50895</bug>: Don't initialize classes created during the
+ compilation stage. (markt)
+ </fix>
</changelog>
</subsection>
</section>