@RestControllerAdvice
可以将响应数据返回json格式然后响应
那么开始做全局异常处理器
首先先定义一个类
package com.healer.exception;
import com.healer.common.Result;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RestControllerAdvice;
/**
* @author healer
* @Description GloableExceptionHandler
* @data 2024-06-05 20:50
*/
@RestControllerAdvice
public class GloableExceptionHandler {
@ExceptionHandler(Exception.class)
public Result ex(Exception e) {
return Result.error("操作失误,请联系系统管理员");
}
}
返回错误提示