Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using Spring 3 with Hibernate 3 and getting this error:

Caused by: org.hibernate.AnnotationException: Use of @OneToMany or @ManyToMany targeting an unmapped class: cz.dagoo.dros.models.Invoice.invoiceItems[cz.dagoo.dros.models.InvoiceItem]

I've tried everything what I found but I'm not able to solve this problem.

How is it possible that some class is unmapped?

Invoice class: Invoice class

InvoiceItem class:

InvoiceItem class

Hibernate.xml: Hibernate.xml

BeanLocations.xml: BeanLocations.xml

My project files:

enter image description here

share|improve this question

1 Answer

up vote 1 down vote accepted

As the exception tells you: cz.dagoo.dros.models.InvoiceItem is not mapped as an entity. To solve this issue you should add the missing @Entity-annotation on InvoiceItem.

share|improve this answer
Thank you! First I was using XML, annotations came later and I forgot to add Entity and Table to InvoiceItem. – Xdg Feb 14 at 12:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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