반응형 ERROR: relation "table_name" does not exist1 JPA @Query 사용 시 주의점 ERROR: relation "table_name" does not exist, ConverterNotFoundException JPA에서 데이터를 조회 할 때는 보통 find로 시작하는 Query Method를 사용하여 조회합니다. 하지만 복잡한 관계에 있는 테이블들을 사용해 조회해야 할 경우에는 직접 쿼리를 작성하여 조회하는데요, 이럴 때 사용하는 Annotation이 @Query (org.springframework.data.jpa.repository.Query) 입니다. @Query 사용법 @Query(value = "query 작성", nativeQuery = true) @Query Parameter 전달 방법 @Query(value = "select userId, userNm from user where user_id = :userId", nativeQuery = true) Optional findUser(@Param(.. Programing/JPA 2023. 4. 8. 이전 1 다음 💲 추천 글 반응형