I have a superclass "Questions" and its subclass "MultipleChoiceQuestions"
superclass ha a field "activity"
I want to create a Set and use OneToMany annotation using "mappedBy = "activity"
eg.....
@OneToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL, mappedBy = "activity" ) private Set mcqQuestions = new HashSet();
.............
I am getting error as..
org.hibernate.AnnotationException: mappedBy reference an unknown target entity property
................
whereas it works fine if i create a set of superclass itself,
eg...
@OneToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL, mappedBy = "activity") private Set questions = new HashSet();
.....
Is dere a way to map to property of superclass..??
Set. – Binil Thomas Dec 15 '10 at 8:39