欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SpringMvc 异常处理器

程序员文章站 2022-05-03 22:03:10
简介 SpringMvc 在处理请求过程中出现异常信息由异常处理器进行处理,自定义异常处理器可以实现一个系统的异常处理逻辑。 异常理解 异常包含编译时异常和运行时异常,其中编译时异常也叫预期异常。运行时异常只有在项目运行的情况下才会发现,编译的时候不需要关心。 运行时异常,比如:空指针异常、数组越界 ......

简介

  springmvc 在处理请求过程中出现异常信息由异常处理器进行处理,自定义异常处理器可以实现一个系统的异常处理逻辑。

异常理解

  异常包含编译时异常运行时异常,其中编译时异常也叫预期异常。运行时异常只有在项目运行的情况下才会发现,编译的时候不需要关心。

  运行时异常,比如:空指针异常、数组越界异常,对于这样的异常,只能通过程序员丰富的经验来解决和测试人员不断的严格测试来解决。

  编译时异常,比如:数据库异常、文件读取异常、自定义异常等。对于这样的异常,必须使用 try catch代码块或者throws关键字来处理异常。

异常处理思路

  系统中异常包括两类:预期异常(编译时异常)和运行时异常runtimeexception,前者通过捕获异常从而获取异常信息,后者主要通过规范代码开发、测试等手段减少运行时异常的发生。

  系统的dao、service、controller出现都通过throws exception向上抛出,最后由springmvc前端控制器交给异常处理器进行异常处理,如下图:

SpringMvc 异常处理器

 

 全局范围只有一个异常处理器。

自定义异常类

第一步:customexception.java

package com.cyb.ssm.exception;

/**
 * 自定义编译时异常
 * 
 * @author apple
 *
 */
public class customexception extends exception {
    private string msg;

    public string getmsg() {
        return msg;
    }

    public void setmsg(string msg) {
        this.msg = msg;
    }

    public customexception(string msg) {
        super();
        this.msg = msg;
    }
}

第二步:customexceptionresolver.java(重点)

package com.cyb.ssm.resolver;

import javax.servlet.http.httpservletrequest;
import javax.servlet.http.httpservletresponse;

import org.springframework.web.servlet.handlerexceptionresolver;
import org.springframework.web.servlet.modelandview;

import com.cyb.ssm.exception.customexception;

public class customexceptionresolver implements handlerexceptionresolver {

    @override
    public modelandview resolveexception(httpservletrequest request, httpservletresponse response, object handler,
            exception ex) {
        string message="";
        // 异常处理逻辑
        if (ex instanceof customexception) {
            message = ((customexception) ex).getmsg();
        } else {
            message="未知错误";
        }
        modelandview mv=new modelandview();
        mv.setviewname("error");
        mv.addobject("message", message);
        return mv;
    }
}

第三步:在springmvc.xml中加入bean

<?xml version="1.0" encoding="utf-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemalocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop.xsd">
    <!-- 处理器类的扫描 -->
    <context:component-scan
        base-package="com.cyb.ssm.controller"></context:component-scan>
    <mvc:annotation-driven conversion-service="conversionservice"/>
    <!-- 显示配置视图解析器 -->
    <bean
        class="org.springframework.web.servlet.view.internalresourceviewresolver">
        <property name="prefix" value="/web-inf/jsp/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>
    <!-- 配置自定义的转换服务 -->
    <bean id="conversionservice"
        class="org.springframework.format.support.formattingconversionservicefactorybean">
        <property name="converters">
            <set>
                <!-- 自定义日期类型转换器 -->
                <bean class="com.cyb.ssm.controller.converter.dateconverter"></bean>
            </set>
        </property>
    </bean>
    <!-- 配置异常处理器 -->
    <bean class="com.cyb.ssm.resolver.customexceptionresolver"></bean>
</beans>

第四步:jsp错误页面

<%@ page language="java" contenttype="text/html; charset=utf-8"
    pageencoding="utf-8"%>
<!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>错误页面</title>
</head>
<body>
    ${message }
</body>
</html>

第五步:测试类

    @requestmapping("queryitem")
    public modelandview queryitem() throws customexception {
        //查询数据库,用静态数据模拟
        list<item> itemlist = service.queryitemlist();
        modelandview mvandview = new modelandview();
        mvandview.addobject("itemlist", itemlist);
        //设置视图(逻辑路径)
        mvandview.setviewname("item/item-list");
        if (true) {
            throw new customexception("我是自定义异常类");
        }
        return mvandview;
    }

实现

SpringMvc 异常处理器

 

源码 

完整代码: