1. 에러 메시지 Caused by: org.hibernate.AnnotationException: Illegal attempt to map a non collection as a @OneToMany, @ManyToMany or @CollectionOfElements: 2. 원인 1 2 3 4 5 6 7 8 9 10 11 12 // User entity 부분 @OneToMany(mappedBy = "user") private Subscribe subscribe; --------------------------------------------------------------- // Subscribe entity 부분 @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(nam..