Details
-
Improvement
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
2.3.0-beta
-
None
-
None
Description
Right now the isFacesServlet method from FacesServletMappingUtils is using ClassUtils.simpleClassForName which logs and throws a lot of classes that cannot find. We can change it to use ClassUtils.simpleClassForName(servletClassName, false) so it doesn't log every class not found.
I'll provide a patch