Hibernate和Spring Annotation @OneToMany未映射的类错误

时间:2013-02-14 12:30:38

标签: java spring hibernate annotations

我正在使用Spring 3和Hibernate 3并收到此错误:

  

引起:org.hibernate.AnnotationException:使用@OneToMany或   @ManyToMany定位未映射的类:   cz.dagoo.dros.models.Invoice.invoiceItems [cz.dagoo.dros.models.InvoiceItem]

我已经尝试了所有我找到的东西,但我无法解决这个问题。

某些课程如何取消映射?

发票类: Invoice class

InvoiceItem类:

InvoiceItem class

Hibernate.xml: Hibernate.xml

BeanLocations.xml: BeanLocations.xml

我的项目文件:

enter image description here

1 个答案:

答案 0 :(得分:1)

正如异常所示:cz.dagoo.dros.models.InvoiceItem未映射为实体。要解决此问题,您应该在InvoiceItem上添加缺少的@Entity - 注释。