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..??

link|improve this question

@sahil, the two lines you showed - where you claimed that the first one did not work, but the second one did - differ only in the variable name of the Set. – Binil Thomas Dec 15 '10 at 8:39
@binil : ya.. actually in second case, questions is the base class, whereas mcqQuestion is subclass. – shail Dec 15 '10 at 9:39
@OneToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL, mappedBy = "activity") private Set<NQIQuestions> questions = new HashSet<NQIQuestions>(); – shail Dec 15 '10 at 9:42
@OneToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL, mappedBy = "activity" ) private Set<NQIMultipleChoiceQuestions> mcqQuestions = new HashSet<NQIMultipleChoiceQuestions>(); – shail Dec 15 '10 at 9:42
NQIQuestions is superclass of NQIMultipleChoiceQuestions – shail Dec 15 '10 at 9:43
feedback

1 Answer

up vote 3 down vote accepted

Found the solutionn for this... :)

we can achieve this just by defining the targetEntity = ? in the OneToMany definition..

eg..

@OneToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL, mappedBy = "activity" , targetEntity=NQIQuestions.class)    
private Set<NQIMultipleChoiceQuestions> mcqQuestions = new HashSet<NQIMultipleChoiceQuestions>();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.