'Basic' attribute type should not be a container 에러 해결
상황
jpa로 entity 작성 중
team과 student를 1대N 관계로 두고
team에서 studentList에 접근하고자 했음
해결
@OneToMany 를 붙여줘서 연관 관계 매핑을 시켜줌으로써 해결
@OneToMany
private List<Student> studentList;
참고
https://www.inflearn.com/questions/601534/address-order-%ED%81%B4%EB%9E%98%EC%8A%A4
'Spring' 카테고리의 다른 글
Spring에서 Feign 사용하기 (0) | 2023.07.31 |
---|---|
JPA JPQL 파라미터 객체(Object)로 한 번에 넘기기 (0) | 2023.07.26 |
JPA ConverterNotFoundException: No converter found capable of converting from type 에러 해결 (0) | 2023.07.26 |
JPA 양방향 매핑 Entity 한 번에 저장하기 (0) | 2023.07.23 |
Not a managed type: class java.lang.Object 에러 해결 (0) | 2023.07.23 |