스프링부트 프로젝트 진행 중 다음과 같은 에러가 발생
javax.persistence.EntityNotFoundException: Unable to find ...
원인 및 해결 방법
@OneToOne, @OneToMany 와 같은 annotation로 매핑된 id값이 0이거나 매핑되어있는 id의 자식객체가 없을 때 발생
DB에서 기존 테이블을 삭제하고 백업한 테이블 정보로 덮어 씌울 때 index의 Auto-Increament 설정이 누락되어 발생
DB에서 Auto-Increament 설정을 해주어 해결
'Backend > Spring' 카테고리의 다른 글
[Spring] @RequestParam (0) | 2022.11.03 |
---|---|
[Spring] @ControllerAdvice 예외 처리 (0) | 2022.10.24 |
[Spring] servlet-context.xml의 resources (0) | 2022.10.24 |