Rest api를 제작하는 과정에서 없는 id 값을 찾을 때의 에러 상태가 500이 떴다.
이것을 아래와 같이 404 NOT FOUND로 변경하고 싶어서 변경해 주었다.
1
2
3
4
5
6
|
@ResponseStatus(HttpStatus.NOT_FOUND)
public class UserNotFoundException extends RuntimeException {
public UserNotFoundException(String msg) {
super(msg);
}
}
|
cs |
다음과 같이 @ResponseStatus 를 통해 변경해주었다. HttpStatus. 아래에 굉장히 많은 값들이 있으니 골라쓰면 된다.
'Spring' 카테고리의 다른 글
[Spring] @Valid 를 이용한 Exception처리와 ThymeLeaf 처리 (0) | 2020.09.15 |
---|---|
[Spring] @ControllerAdvice를 이용한 Exception custom 처리하기 (0) | 2020.09.15 |
[Spring] PathVariable 사용법 (0) | 2020.09.15 |
[Spring] UriComponentsBuilder 사용하기 (0) | 2020.09.15 |
ENUM 에 대해 알아보자 (0) | 2020.07.31 |