美文网首页Java 实战项目实战项目开发
ssh项目实战----统一异常处理

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

作者: 程序员欧阳 | 来源:发表于2018-01-24 17:36 被阅读98次

一、概述

在项目中总会出现各种异常、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"%>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>系统繁忙</title>
<style>
body,html {  
margin: 0;  
padding: 0;  
height:100%;  
}  
#content {  
min-height:100%;  
position: relative;  
}  
#footer {  
position: absolute;  
bottom: 0;  
padding: 10px 0;  
width: 100%;  
}  
</style>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- FONT AWESOME CSS -->
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" />
<!--GOOGLE FONT -->
<link href='http://fonts.googleapis.com/css?family=Nova+Flat'
    rel='stylesheet' type='text/css'>
<!-- custom CSS here -->
<link href="css/404.css" rel="stylesheet" />
</head>
<body>

    <div class="container" id="content">

        <div class="row pad-top text-center">
            <s:if test="#session.flag != 'yes'">
                <div class="col-md-6 col-md-offset-3 text-center">
                    <h1>hi,不好意思</h1>
                    <h5>系统有点累了</h5>
                    <span id="error-link"></span>
                    <h2>请检查网络,返回主页,稍后再试!</h2>
                </div>
            </s:if>
            <s:else>
                <div class="col-md-6 col-md-offset-3 text-center">
                    <h2><s:actionerror /></h2>
                </div>
            </s:else>
        </div>

        <div class="row text-center" id="footer">
            <div class="col-md-8 col-md-offset-2">

                <h3>
                    <i class="fa fa-lightbulb-o fa-5x"></i>
                </h3>
                <a href="page_toIndex" class="btn btn-primary">主页</a> <br />
                <br />Copyright &copy; 2017 赣南师范大学 <a href="page_toIndex"
                    title="国家脐橙工程技术研究中心" target="_blank">国家脐橙工程技术研究中心</a>
            </div>
        </div>

    </div>

    <!--Core JavaScript file  -->
    <script src="js/jquery.js"></script>
    <!--bootstrap JavaScript file  -->
    <script src="js/bootstrap.min.js"></script>
    <!--Count Number JavaScript file  -->
    <script src="js/countUp.js"></script>
    <!--Custom JavaScript file  -->
    <script src="js/custom.js"></script>
</body>
</html>

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

好好学java

相关文章

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

    一、概述 在项目中总会出现各种异常、bug,为了使得用户体验更好,当系统出现异常的时候,我们需要有我们的处理方式,...

  • spring/springmvc 全局异常处理

    1.在项目中为什么要统一异常处理 当异常返回到前端页面的时候可以统一处理,避免前端无法处理异常 不做统一异常处理,...

  • 统一异常处理(耦合项目)

    对外:友好页面提示。对内:看日志定位问题: 对异常的收集[日志,日志系统]与处理分析线上的问题很多时候需要看异常日...

  • HandlerExceptionResolver原理分析

    通常在项目中我们都会做统一的异常处理,那么今天我们就来分析下自定义异常处理的原理。 若有不知道怎么自定义统一的异常...

  • Spring Boot简明教程--全局异常处理

    实现思路 为了统一开发过程中的异常处理方式和返回值,需要为项目制定统一的全局异常处理。在SpringBoot中全局...

  • 统一异常处理介绍及实战

    背景 软件开发过程中,不可避免的是需要处理各种异常,就我自己来说,至少有一半以上的时间都是在处理各种异常情况,所以...

  • 统一异常处理

    一、什么是统一异常处理 1、制造异常 2、什么是统一异常处理我们想让异常结果也显示为统一的返回结果对象,并且统一处...

  • 项目中统一异常处理

    在开发时,难免各种if else代码判断用户请求是否包含***,那么我们如何让用户更清楚的知道自己要干什么,错在哪...

  • springboot全局异常处理

    一、单个controller范围的异常处理/** 统一异常处理 @return*/@RequestMapping(...

  • SpringCloud @ControllerAdvice通用异

    Springcloud 项目 common组件写的 全局捕获异常不执行,原因如下:问题配置异常统一处理时,发现无法...

网友评论

    本文标题:ssh项目实战----统一异常处理

    本文链接:https://www.haomeiwen.com/subject/ynnuaxtx.html