Custom Error Page in Tomcat 7 for Error Code 500

前端 未结 2 407
温柔的废话
温柔的废话 2020-12-16 13:30

Guys I am struggling with the problem of opening my custom error page in Tomcat in Windows Environment. Some of solution I got but no luck. I tried almost all links but its

2条回答
  •  -上瘾入骨i
    2020-12-16 14:14

    Try putting the following snippet in your WEB-INF/web.xml

    
        500
        /Error.jsp
    
    
    
        java.lang.Exception
        /Error.jsp
    
    

    In this case Error.jsp is at the same level as WEB-INF directory (not inside it).

提交回复
热议问题