ssh项目实战----统一异常处理

一、概述

在项目中总会出现各种异常、bug,为了使得用户体验更好,当系统出现异常的时候,我们需要有我们的处理方式,使得用户能够理解系统出现了什么问题。

二、异常类

首先我们需要编写一个异常类

package org.sihai.qualitycontrol.utils.exception;

public class AppException extends RuntimeException{

    public AppException() {
        super();
    }

    public AppException(String message, Throwable cause) {
        super(message, cause);
    }

    public AppException(String message) {
        super(message);
    }

    public AppException(Throwable cause) {
        super(cause);
    }
    
}

三、异常处理拦截器

在有了异常类之后,当出现异常的时候,我们需要有拦截器来拦截,然后转发到异常页面。

package org.sihai.qualitycontrol.utils.interceptor;

import org.apache.struts2.ServletActionContext;
import org.sihai.qualitycontrol.utils.exception.AppException;

import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.interceptor.AbstractInterceptor;

public class ExceptionInterceptor extends AbstractInterceptor{

    public String intercept(ActionInvocation invocation) throws Exception {
        try {
            return invocation.invoke();
        } catch (AppException e) {
            //记录日志
            //发送日志到程序员邮箱
            //报警
            ActionSupport as = (ActionSupport) invocation.getAction();
            as.addActionError(as.getText(e.getMessage()));
            ServletActionContext.getContext().getSession().put("flag", "yes");
            return "systemerror";
        } catch (Exception e) {
            ActionSupport as = (ActionSupport) invocation.getAction();
            as.addActionError("对不起,服务器有点累了,请联系管理员!");
            ServletActionContext.getContext().getSession().put("flag", "yes");
            System.out.println(e.getStackTrace());
            return "systemerror";
        }
    }
    
}

关于拦截器的配置请查看:ssh项目实战----用户登录校验(struts拦截器)

四、异常处理页面

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<%@taglib prefix="s" uri="/struts-tags"%>







系统繁忙












    

hi,不好意思

系统有点累了

请检查网络,返回主页,稍后再试!

如果想获取更多源码或者视频教程,欢迎关注我的微信公众号 好好学java,在公众号里,回复:java基础、html5、javaEE基础、struts2、spring、redis、luncene、oracle等,将可获得以上的优质视频教程及源码。

好好学java

你可能感兴趣的:(ssh项目实战----统一异常处理)