全局异常处理

package com.ityuhao.bigevent.exception;

//import com.ityuhao.bigevent.pojo.Result;
//import com.ityuhao.bigevent.pojo.ResultCodeEnum;
import com.ityuhao.bigevent.pojo.Result;
import org.springframework.util.StringUtils;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RestControllerAdvice;

@RestControllerAdvice
public class GlobeExceptionHandler {

    @ExceptionHandler(Exception.class)
    public Result handlerException(Exception e)
    {
        e.printStackTrace();
        // return Result.build(null, 1,StringUtils.hasLength(e.getMessage()) ? e.getMessage() : "操作失败");
        return Result.error(StringUtils.hasLength(e.getMessage()) ? e.getMessage() : "操作失败");

    }
}

 

posted @ 2025-03-11 21:52  新晋软工小白  阅读(8)  评论(0)    收藏  举报