全局异常处理 

@RestcontrollerAdvice

@Exceptonhandler 

package com.it.Exception;


import com.it.pojo.Result;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RestControllerAdvice;


/*全局异常处理器*/
@RestControllerAdvice
public class GlobalExceptionHandler {

    @ExceptionHandler(Exception.class)
    public Result ex(Exception ex){
        return Result.error("对不起,操作失败,请联系管理员");
    }
}

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注