web.xml中配置错误处理

web.xml中配置错误处理

1.使用<error-page>元素来避免让用户看到HTTP404或HTTP500错误。
< error-page >
      
< error-code > 404 </ error-code >
      
< location > /error_404.jsp </ location >
</ error-page >
< error-page >
      
< error-code > 500 </ error-code >
      
< location > /error_500.jsp </ location >
</ error-page >
2.配置<error-page>让Web容器捕获如下异常:
   <1>RuntimeException或Error
   <2>ServletException或它的子类
   <3>IOException或它的子类
< error-page >
      
< exception-type > javax.servlet.ServletException </ exception-type >
      
< location > /error.jsp </ location >
  
</ error-page >

你可能感兴趣的:(web.xml中配置错误处理)