码迷,mamicode.com
首页 > 其他好文 > 详细

手动处理异常的使用

时间:2015-06-19 10:28:47      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:java   异常   

    在程序运行过程中,不免遇到一些错误,这时候就要对错误进行一些处理,使得错误能够更友好的展示给用户。所以在这介绍一下手动错误处理的使用:
1、建立错误处理程序的类,继承自RuntimeException ,如下
public class ApplicationException extends RuntimeException {
    public ApplicationException() {
    }
    public ApplicationException(String message) {
        super(message);
    }
    public ApplicationException(Throwable cause) {
        super(cause);
    }
    public ApplicationException(String message, Throwable cause) {
        super(message, cause);
    }
    public ApplicationException(String message, Throwable cause,
            boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}

2、错误处理配置
    <!-- 错误跳转页面的配置 -->

     <error-page>
         <exception-type>com.bjpowernode.drp.util.ApplicationException</exception-type>
         <location>/error.jsp</location>
     </error-page>  

3、错误处理程序error.jsp(简单拦截)
<div align="center"><p align="left"><span class="STYLE1">错误信息:</div>
    <div><%=exception.getMessage()%></div>

4、除此之外,还有对一些错误码的如理,如下:
       1)配置文件中对错误码的配置
<!-- 错误跳转页面的配置 -->
     <error-page>
         <error-code>404</error-code>
         <location>/http_error.jsp</location>
     </error-page>
     <error-page>
         <error-code>500</error-code>
         <location>/http_error.jsp</location>
     </error-page>  

        2)错误处理页面http_error.jsp的处理  
        <body>
            <%
                Integer errorCode=(Integer)request.getAttribute("javax.servlet.error.status_code");
                 //当分别遇到错误码为404和500时,分别跳转到相应的错误处理页面进行处理

                if (errorCode==404){
                    response.sendRedirect(request.getContextPath()+ "/404.jsp");
                }else if (errorCode==500){
                    response.sendRedirect(request.getContextPath()+ "/500.jsp");
                }
            %>

        </body>

  3)错误处理页面处理
    如果是404:<body> 未找到请求的页面</body>
    如果是500:<body>系统出现错误,请与系统管理员联系!</body>     

手动处理异常的使用

标签:java   异常   

原文地址:http://blog.csdn.net/u010927139/article/details/46558313

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!