일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- JVM
- jenkins
- IntelliJ
- elasticsearch
- java
- devops
- javascript
- it
- jsp
- Gradle
- springboot
- laravel
- MySQL
- redis
- Spring
- php
- db
- Web Server
- Spring Boot
- ReactJS
- Oracle
- 요리
- Git
- AWS
- linux
- ubuntu
- Spring Batch
- tool
- Design Patterns
- 맛집
Archives
- Today
- Total
아무거나
javax.persistence.EntityNotFoundException: Unable to find ... with id 0 에러 본문
Java & Kotlin/JPA
javax.persistence.EntityNotFoundException: Unable to find ... with id 0 에러
전봉근 2018. 9. 12. 16:34반응형
데이터를 저장할 때 @OneToOne, @OneToMany.. 등의 annotation이 선언되어 있을 경우에는 매핑된 id값이 0이거나 매핑되어있는 id의 자식객체가 없을 때 오류가 발생하는 경우가 있다. 이 경우 매핑되는 애들이 없을 때 값을 null 처리를 하게되면 문제없이 조회를 할 수 있다.
즉, 매핑 id 값을 null로 처리하자.
반응형
'Java & Kotlin > JPA' 카테고리의 다른 글
[Spring Boot] JPA DatasourceConfig 설정 (Multi Connection 또는 추가 설정시 유용) (0) | 2021.06.16 |
---|---|
Entity Graph 설명 (0) | 2021.01.16 |
[JPQL] JPQL 기본 사용 예 (0) | 2019.08.23 |
jpql 바인딩 에러 No parameter binding found for name (0) | 2019.03.26 |
Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Cannot delete or update a parent row: a foreign key constraint fails 에러 (0) | 2018.09.12 |
Comments