크키런
2021. 11. 14. 21:24
728x90
IS NOT MAPPED - @Query("select * from Todo t where t.userId = ?1") 로 썼을 때 발생
@Table(name = "Todo")
public class TodoEntity {
테이블명은 Todo이지만 이걸 선언해둔 클래스는 TodoEntity이기에 TodoEntity를 써줘야했음
결론 @Query("select * from TodoEntity t where t.userId = ?1")
728x90