当前位置: 代码迷 >> Web前端 >> web.xml内定义错误
  详细解决方案

web.xml内定义错误

热度:39   发布时间:2012-10-28 09:54:44.0
web.xml内定义异常
<error-page>
<error-code>404</error-code>
<location>/error/404.jsp</location>
</error-page>
<error-page>
<error-code>403</error-code>
<location>/error/403.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error/500.jsp</location>
</error-page>
<!-- java.lang.Exception异常错误 -->
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/error/error.jsp</location>
</error-page>
  相关解决方案