Hibernate @ManyToOne references an unknown entity

前端 未结 12 1550
名媛妹妹
名媛妹妹 2021-01-03 17:54

I am receiving the following Hibernate Exception:

@OneToOne or @ManyToOne on Matchup.awayTeam references an unknown entity: Team

The simplified

12条回答
  •  我在风中等你
    2021-01-03 18:01

    If you do not use the hibernate.cfg.xml you can add targetEntity parameter in @ManyToOne/@OneToMany annotation with class describing your entity.

    For instance:

    @ManyToOne(targetEntity = some.package.MyEntity.class)
    

提交回复
热议问题