|
|
|
@ -0,0 +1,46 @@
|
|
|
|
|
package cc.aspark.handler;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import cc.aspark.constant.MessageConstant;
|
|
|
|
|
import cc.aspark.exception.BaseException;
|
|
|
|
|
import cc.aspark.result.Result;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springframework.web.bind.annotation.ExceptionHandler;
|
|
|
|
|
import org.springframework.web.bind.annotation.RestControllerAdvice;
|
|
|
|
|
|
|
|
|
|
import java.sql.SQLIntegrityConstraintViolationException;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 全局异常处理器,处理项目中抛出的业务异常
|
|
|
|
|
*/
|
|
|
|
|
@RestControllerAdvice
|
|
|
|
|
@Slf4j
|
|
|
|
|
public class GlobalExceptionHandler {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 捕获业务异常
|
|
|
|
|
*/
|
|
|
|
|
@ExceptionHandler
|
|
|
|
|
public Result exceptionHandler(BaseException ex){
|
|
|
|
|
log.error("异常信息:{}", ex.getMessage());
|
|
|
|
|
return Result.error(ex.getMessage());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ExceptionHandler
|
|
|
|
|
public Result exceptionHandler(SQLIntegrityConstraintViolationException ex) {
|
|
|
|
|
String msg = ex.getMessage();
|
|
|
|
|
if (msg.contains("Duplicate entry")) {
|
|
|
|
|
return Result.error("已存在,请勿重复添加");
|
|
|
|
|
}
|
|
|
|
|
return Result.error(MessageConstant.UNKNOWN_ERROR);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @ExceptionHandler
|
|
|
|
|
// public Result exceptionHander(SQLException ex) {
|
|
|
|
|
// String msg = ex.getMessage();
|
|
|
|
|
// if (msg.contains("doesn't have a default value")) {
|
|
|
|
|
// return Result.error(MessageConstant.INVALID_INPUT);
|
|
|
|
|
// }
|
|
|
|
|
// return Result.error(MessageConstant.UNKNOWN_ERROR);
|
|
|
|
|
// }
|
|
|
|
|
}
|