If compilation fails, always try to re-compile the next time around
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@921464
13f79535-47bb-0310-9956-
ffa450edef68
} catch (JasperException ex) {
// Cache compilation exception
jsw.setCompilationException(ex);
+ // Make sure recompilation is attempted
+ jsw.setLastModificationTest(-1);
throw ex;
} catch (Exception ex) {
JasperException je = new JasperException(
}
if (options.getDevelopment() || firstTime ) {
synchronized (this) {
- firstTime = false;
ctxt.compile();
+ firstTime = false;
}
} else {
if (compileException != null) {