异常处理 springboot

异常处理 springboot_第1张图片全局异常处理 

@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("对不起,操作失败,请联系管理员");
    }
}

你可能感兴趣的:(java,前端,开发语言)