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

[四]SpringBoot 之 捕捉全局异常

时间:2017-02-14 18:59:16      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:exception   val   work   import   handle   style   imp   pre   port   

在class注解上@ControllerAdvice,

在方法上注解上@ExceptionHandler(value = Exception.class),具体代码如下:

package me.shijunjie.controller;

import javax.servlet.http.HttpServletRequest;

import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;

@ControllerAdvice
public class GlobalExceptionHandler {

    @ExceptionHandler(value = Exception.class)
    public void handleGlobalException(HttpServletRequest req, Exception e) {
        //打印异常信息:
        //e.printStackTrace();
        System.out.println("GlobalExceptionHandler.handleGlobalException()");
    }

}

 

@RequestMapping("/zeroException")
    public int zeroException(){
       return 111/0;
    }

 

[四]SpringBoot 之 捕捉全局异常

标签:exception   val   work   import   handle   style   imp   pre   port   

原文地址:http://www.cnblogs.com/s648667069/p/6398696.html

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