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



![[MySQL--基础]多表查询](https://img-blog.csdnimg.cn/direct/962d8a51e32c49789088e76f5c5eda4d.gif#pic_center)














