IllegalArgumentException: The given id must not be null 에러 해결하기
안녕하세요, 오늘은 JPA에서 조회하는 과정에서 발생한 에러인 IllegalArgumentException: The given id must not be null 에 대해 알아보고, 이를 해결하는 방법에 대해 설명드리겠습니다. 에러 원인Response response = responseRepository.findById(dto.getResponseId()) .orElseThrow(() -> new IllegalArgumentException(dto.getResponseId() + "해당 응답이 없습니다.")); dto에서 responseId를 받아서 조회하는 과정에서 해당 에러가 발생하였습니다.해당 에러는 주로 데이터베이스에서 특정 엔티티를 조회할 때, 조회 ..
Backend/Springboot
2024. 5. 20. 10:40
반응형
공지사항