if (getServlet() == null) {
Class<?> clazz = null;
try {
- clazz = getParentClassLoader().loadClass(getServletClass());
+ clazz = getParent().getLoader().getClassLoader().loadClass(
+ getServletClass());
processServletSecurityAnnotation(clazz);
} catch (ClassNotFoundException e) {
// Safe to ignore. No class means no annotations to process
Use safe equality test when determining event type in the
MapperListener. (markt)
</fix>
+ <fix>
+ Use correct class loader when loading Servlet classes in
+ StandardWrapper. (markt)
+ </fix>
</changelog>
</subsection>
</section>