Illegal attempt to map a non collection as a @OneToMany, @ManyToMany or @CollectionOfElements:


Illegal attempt to map a non collection as a @OneToMany, @ManyToMany or @CollectionOfElements:

게시판과 게시글 도메인을 만들던 중 에러를 만났음. ※에러 메세지 - Illegal attempt to map a non collection as a @OneToMany,@ManyToMany or @CollectionOfElements: 도메인 경로 파파고 번역기를 돌려보니 비 컬렉션을 @OneToMany, @ManyToMany 또는 @CollectionOfElements로 매핑하려는 잘못된 시도: 라는 뜻이였음. 거두절미하고 갓글 검색하여 얻은 해결방법 !! 일대다인 @OneToMany를 설정한 Article을 List로 변경해야 한다는 것. ※해결방법 //이전 코드 @OneToMany private Article article; //변경된 코드 @OneToMany private List article..


원문링크 : Illegal attempt to map a non collection as a @OneToMany, @ManyToMany or @CollectionOfElements: