記録用)異常Handler

376 ワード

@ControllerAdvice
@RestController
public class ~ {
	@ExceptionHandler(Exception.class)
    public Object ~(Exception e) {
    	return ~;
    }
}
@ExceptionHandler 1つのクラスで例外を処理
@ControllerAdviceグローバル範囲での例外処理
https://jeong-pro.tistory.com/195