Author: markt Date: Wed Mar 9 13:52:07 2011 New Revision: 1079801 URL: http://svn.apache.org/viewvc?rev=1079801&view=rev Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=50895 Don't initialize classes during compilation
Modified: tomcat/trunk/java/org/apache/jasper/compiler/ELFunctionMapper.java tomcat/trunk/webapps/docs/changelog.xml Modified: tomcat/trunk/java/org/apache/jasper/compiler/ELFunctionMapper.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/jasper/compiler/ELFunctionMapper.java?rev=1079801&r1=1079800&r2=1079801&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/jasper/compiler/ELFunctionMapper.java (original) +++ tomcat/trunk/java/org/apache/jasper/compiler/ELFunctionMapper.java Wed Mar 9 13:52:07 2011 @@ -312,7 +312,7 @@ public class ELFunctionMapper { } try { - clazz = Class.forName(className, true, tccl); + clazz = Class.forName(className, false, tccl); } catch (ClassNotFoundException e) { throw new JasperException(e); } Modified: tomcat/trunk/webapps/docs/changelog.xml URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1079801&r1=1079800&r2=1079801&view=diff ============================================================================== --- tomcat/trunk/webapps/docs/changelog.xml (original) +++ tomcat/trunk/webapps/docs/changelog.xml Wed Mar 9 13:52:07 2011 @@ -94,6 +94,10 @@ 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> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org