1.实现不管报什么错,都将跳转到一个页面
方案1、 web.xml里边可以配置404页面和500页面
<!-- 异常配置 -->
<error-page>
<exception-type>javax.servlet.ServletException</exception-type>
<location>/error.jsp</location>
</error-page>
<!-- 找不到页面配置 -->
<error-page>
<error-code>404</error-code>
<location>/404.jsp</location>
</error-page>
方案2、过滤器