오류
2021. 11. 14. 21:24ㆍ(구)공부/SpringBoot
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
'(구)공부 > SpringBoot' 카테고리의 다른 글
CORS 설정 (0) | 2021.12.11 |
---|---|
entity 설정 (0) | 2021.11.10 |
게시판 - 3 (수정,삭제) 최종 (1) | 2021.08.14 |
게시판 만들기 - 2(페이징) (2) | 2021.08.12 |
게시판 만들기 - 1 (0) | 2021.08.11 |