시나리오: 예외 처리의 경우 원래 접근 방식은 일반적으로 Controller
@Controller public class HelloController { private static final Logger logger = LoggerFactory.getLogger(HelloController.class); @GetMapping(value = "/hello") @ResponseBody public Result hello() { try { //TODO 具体的逻辑省略…… } catch (Exception e) { logger.error("hello接口异常={}", e); return ResultUtil.success(-1, "system error", null); } return ResultUtil.success(0, "success", null); } }
와 같은 가장 바깥쪽 레이어에서 예외를 캡처하는 것입니다. 이 방법도 일부 문제를 해결할 수 있지만 자체적으로 지정된 예외를 가져올 수 없으므로 전역 통합 예외 처리를 도입합니다. 코드가 크게 향상되고 중복 코드 생성이 줄어듭니다.
사용자 정의 예외 클래스: Exception 대신 RuntimeException에서 상속하도록 주의하세요. Exception에서 상속하는 경우 사용자 정의 예외가 발생하면 spring 트랜잭션이 롤백되지 않습니다.
public class GlobalException extends RuntimeException { private Integer code; //因为我需要将异常信息也返回给接口中,所以添加code区分 public GlobalException(Integer code,String message) { super(message); //把自定义的message传递个异常父类 this.code = code; } public Integer getCode() { return code; } public void setCode(Integer code) { this.code = code; } }
사용자 정의 통합 예외 처리기: 두 가지 핵심 사항에 주석을 답니다. @ControllerAdvice, @ExceptionHandler
@ControllerAdvice public class ExceptionHandle { @ResponseBody //因为我需要将抛出的异常返回给接口,所以加上此注解 @ExceptionHandler public Result handle(Exception e) { if (e instanceof GlobalException) { GlobalException ge = (GlobalException) e; return ResultUtil.success1(ge.getCode(), ge.getMessage()); } return ResultUtil.success1(-1, "system error!"); } }
테스트할 테스트 클래스 작성
@GetMapping(value = "/hello1") @ResponseBody public Result hello(@RequestParam(value = "age", defaultValue = "50", required = false) Integer age) throws GlobalException { if (age 50) { throw new GlobalException(ConstantEnum.MORE50.getCode(), ConstantEnum.MORE50.getMsg()); } else { return ResultUtil.success1(0, "success"); } }
통합 유지 관리를 용이하게 하기 위해 ConstantEnum 열거형에 코드와 메시지를 캡슐화하세요
public enum ConstantEnum { ERROR(-1, "system error!"), SUCCESS(100, "success"), LESS10(101, "自定义异常信息-我小于10岁"), MORE50(5001, "自定义异常信息-我大于50岁"); private Integer code; private String msg; public Integer getCode() { return code; } public String getMsg() { return msg; } ConstantEnum(Integer code, String msg) { this.code = code; this.msg = msg; } }
위 내용은 SpringBoot에서 통합 예외 처리를 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!