git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@956252
13f79535-47bb-0310-9956-
ffa450edef68
if (hasExternalRepositories && searchExternalFirst) {
try {
clazz = super.findClass(name);
+ } catch(ClassNotFoundException cnfe) {
+ // Ignore - will search internal repositories next
} catch(AccessControlException ace) {
log.warn("WebappClassLoader.findClassInternal(" + name
+ ") security exception: " + ace.getMessage(), ace);
package definition restrictions defined in the catalina.properties file.
(markt)
</fix>
+ <fix>
+ When using a Loader configured with
+ <code>searchExternalFirst="true"</code> failure to find the
+ class in an external repository should not prevent searching of the
+ local repositories. (markt)
+ </fix>
</changelog>
</subsection>
<subsection name="Jasper">