Springboot自定义异常处理

Posted 必须往前走

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Springboot自定义异常处理相关的知识,希望对你有一定的参考价值。

1.自定义异常类

import lombok.Data;

@Data
public class UserException extends RuntimeException {
    private Long id;

    public UserException(Long id) {
        super("user not exist");
        this.id = id;
    }

    public UserException(String message, Long id) {
        super(message);
        this.id = id;
    }
}
自定义异常类

2.编写异常处理handler

import java.util.HashMap;
import java.util.Map;

@ControllerAdvice
public class ControllerExceptionHandler {
    @ExceptionHandler(UserException.class)
    @ResponseBody
    @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR)
    public Map<String,Object> handlerUserNotExistException(UserException ex){
        Map<String,Object> result=new HashMap<>();
        result.put("id",ex.getId());
        result.put("message",ex.getMessage());
        return result;
    }
}
异常处理handler

 

3.使用过程

 

以上是关于Springboot自定义异常处理的主要内容,如果未能解决你的问题,请参考以下文章

Springboot自定义异常处理

springboot2.0处理任何异常返回通用数据格式

全栈编程系列SpringBoot整合Shiro(含KickoutSessionControlFilter并发在线人数控制以及不生效问题配置启动异常No SecurityManager...)(代码片段

Springboot的异常处理与自定义异常

Springboot自定义异常处理

springboot自定义异常和全局异常处理