예:
@Entity public class JavaEntity { @OneToOne Map<Integer, AnotherEntity> incorrectRelationship; // 오류: 'One To One' 속성 타입은 map이 아니라 entity여야 합니다 @ManyToMany Map<Integer, AnotherEntity> correctRelationship; }