当前位置: 代码迷 >> Web前端 >> web.xml中异常页面配置的代码
  详细解决方案

web.xml中异常页面配置的代码

热度:40   发布时间:2012-09-27 11:11:17.0
web.xml中错误页面配置的代码
                   <error-page>
  <error-code>404</error-code><!--404错误 下面你懂得 -->
<location>/error.jsp</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error.jsp</location>
</error-page>
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/error.jsp</location>
</error-page>
<error-page>
<error-code>401</error-code>
<location>/error.jsp</location>
</error-page>
<error-page>
<error-code>403</error-code>
<location>/error.jsp</location>
</error-page> 
  相关解决方案