error.jsp错误页面跳转,统一异常处理

Posted admin_jh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了error.jsp错误页面跳转,统一异常处理相关的知识,希望对你有一定的参考价值。

常见web项目中会用倒计时然后跳转页面来处理异常

error.jsp关键代码:

 <script language="javascript" type="text/javascript">
            var timer;
            //启动跳转的定时器
            function startTimes() {
                timer = window.setInterval(showSecondes,1000);
            }

            var i = 5;
            function showSecondes() {
                if (i > 0) {
                    i--;
                    document.getElementById("secondes").innerhtml = i;
                }
                else {
                    window.clearInterval(timer);
                    /*要跳转的请求*/
                    location.href = "toLogin.do";
                }
            }

            //取消跳转
            function resetTimer() {
                if (timer != null && timer != undefined) {
                    window.clearInterval(timer);
                    /*取消跳转的请求*/
                    location.href = "toLogin.do";
                }
            }
</script> 


<body class="error_page" onload="startTimes();">
     <h1 id="error">
         遇到错误,&nbsp;<span id="secondes">5</span>&nbsp;秒后将自动跳转,立即跳转请点击&nbsp;
         <a  href="javascript:resetTimer();">返回</a>
     </h1>
</body>

统一异常处理(两种方案)

方案一:

<error-page>
        <exception-type>java.lang.Exception</exception-type>
        <location>/WEB-INF/error.jsp</location><!--这里用绝对路径,因为不知道错误发生在哪里,无法写相对路径-->
</error-page>

方案二:

<error-page>
        <exception-type>400|405|500</exception-type><!--如果需要每个都要配置,所以推荐方案一 -->
        <location>/WEB-INF/error.jsp</location>
</error-page>

 

以上是关于error.jsp错误页面跳转,统一异常处理的主要内容,如果未能解决你的问题,请参考以下文章

jsp错误页不跳转显示500

jsp_设置错误页

SpringMVC统一异常处理(返回异常数据而不是跳转到某个页面的方法)

Java Web 错误/异常处理页面

自定义错误页面

统一处理jquery ajax请求过程中的异常错误信息的机制