Customers have often reported issues that they are not able to configure error page even though the do the configuration in the web.xml correctly web.xml <?xml version=’1.0′ encoding=’UTF-8′?> <web-app xmlns=”http://java.sun.com/xml/ns/j2ee” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”> <display-name>TestApplication</display-name> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> <error-page> <error-code>404</error-code> <location>/error.jsp</location> </error-page> <error-page> <error-code>500</error-code> <location>/error.jsp</location> </error-page> <error-page> <error-code>403</error-code> <location>/error.jsp</location> </error-page> </web-app> error.jsp <%@page
Continue reading »