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

SpringBoot全局异常捕获

时间:2020-01-11 16:56:25      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:new   返回结果   ons   系统   exce   result   shm   put   exception   

@ControllerAdvice  //定义为切面拦截所有
public class GlobalExceptionHandler {
    @ExceptionHandler(RuntimeException.class)
    @ResponseBody // 拦截返回是 json返回结果
    public Map<String, Object> exceptionHandler() {
        Map<String, Object> result=new HashMap<String, Object>();
        result.put("code","500");
        result.put("msg","系统错误");
//这里可以处理
return result; } }

SpringBoot全局异常捕获

标签:new   返回结果   ons   系统   exce   result   shm   put   exception   

原文地址:https://www.cnblogs.com/shanheyongmu/p/12180259.html

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