码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot项目中,异常拦截

时间:2019-01-28 17:47:22      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:value   标签   项目   boot   ice   mod   handler   style   创建   

SpringBoot自带异常拦截@ControllerAdvice

1.创建一个SellerExceptionHandler类打上@ControllerAdvice标签

@ControllerAdvice
public class SellExceptionHandler {
}

2.创建异常处理程序@ExceptionHandler(value = SellerAuthorizeException.class)表示拦截的异常为SellerAuthorizeException异常

    /**
     * 拦截登录异常
     * @return
     */
    @ExceptionHandler(value = SellerAuthorizeException.class)
    public ModelAndView handlerAuthorizeException(){
        return new ModelAndView("redirect:" + projectUrlConfig.getSell() + "/sell/seller/toLogin");
    }

 

SpringBoot项目中,异常拦截

标签:value   标签   项目   boot   ice   mod   handler   style   创建   

原文地址:https://www.cnblogs.com/xzmxddx/p/10330845.html

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