JPQL (1) 썸네일형 리스트형 [JPA] Reason: Validation failed for query for method public abstract 에러가 날 때 JPQL로 신나게 두들기다 다음과 같은 오류가 났습니다... 그리고 이는 문제의 코드 입니다. @Query(value = "select r from Report r " + "where ST_Dwithin(r.location, :point, :radius, false) = true") List findReportsWithinRadius(@Param("point") Point point, @Param("radius") double radius); 구글링을 해보니 nativeQuery = true 조건을 걸어주면 된다고 합니다... @Query(value = "select r from Report r " + "where ST_Dwithin(r.location, :point, :radius, false) = t.. 이전 1 다음