예외처리

    [Springboot] 블로그 만들기 (14)_Exception처리_에러페이지

    DB 값이 존재하지 않는 Id가 1인 데이터를 삭제해보자. Controller @GetMapping("/dummy/user/{id}") public User detail(@PathVariable int id) { User user = userRepository.findById(id).orElseThrow(new Supplier() { @Override public IllegalArgumentException get() { return new IllegalArgumentException("해당 유저는 없습니다. id : " + id); } }); return user; } http://localhost:8001/blog/dummy/user/1 로 1번 데이터 삭제를 요청해보자 당연히 아래와 같이 오류페이지..

    [Springboot] 블로그 만들기 (13)_Delete 테스트, Exception처리

    DB insert test를 하다가 망가진 1번 데이터를 Delete해보자 Controller @DeleteMapping("/dummy/user/{id}") public String DeleteUser(@PathVariable int id) { userRepository.deleteById(id); return "삭제되었습니다 Id : " + id; } 결과 확인 매우 간단하게 delete 문을 작성할 수 있다. 하지만 이 방법은 조금 위험하다. 만약에 존재하지 않는 값 5를 넣어준다면 ? 위와 같이 오류가 발생하게 된다. --> Exception (예외) 처리를 해야된다. @DeleteMapping("/dummy/user/{id}") public String DeleteUser(@PathVariable..