SpringMVC的异常处理

在这里插入图片描述
1.自定义一个异常类

public class CustomException extends Exception
{
    private  String message;

    @Override
    public String getMessage()
    {
        return message;
    }

    public void setMessage(String message)
    {
        this.message = message;
    }

    public CustomException(String message)
    {
        this.message = message;
    }

    public CustomException()
    {
    }

    public CustomException(String message, String message1)
    {
        super(message);
        this.message = message1;
    }
}

2.自定一个异常处理器。
a.当springMvc发生异常时会执行这个异常处理器。
b.自定义异常处理器,实现 HandlerExceptionResolver 接口

public class CustomExceptionResolver implements HandlerExceptionResolver
{
    @Override
    public ModelAndView resolveException(HttpServletRequest httpServletRequest, HttpServletResponse
            httpServletResponse, Object o, Exception e)
    {
        ModelAndView modelAndView = new ModelAndView();
        CustomException customException;
        if( e instanceof CustomException ){
            customException=(CustomException) e;
        }else {
            customException=new CustomException("服务器正在维护...");
        }
        modelAndView.setViewName("error");
        modelAndView.addObject("errorMsg",customException);

        return modelAndView;
    }
}

3.把自定义的异常处理器注入容器中。
a.在springmvc.xml配置

<!--
        自定义异常处理器
    -->
    <bean id="customExceptionResolver" class="com.geor.hellSpringMvcXml.resolver.CustomExceptionResolver"></bean>

b. 或使用注解在自定义的异常处理器 类上加
@Component(“xxx”) 标签

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值