如何在Java-EE中使用hibernate实现ManyToMany关系?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Java-EE中使用hibernate实现ManyToMany关系?相关的知识,希望对你有一定的参考价值。
在构建具有依赖项的maven项目时,我不断收到此错误:
Exception Description: The target entity of the relationship attribute
[template] on the class [class pt.ipleiria.dae.entities.Configuration]
cannot be determined. When not using generics, ensure the target entity is
defined on the relationship mapping.
我有这两个实体,代码如下:
@ManyToMany(mappedBy="configurations")
private Template template;
private String name;
private ConfigurationState state;
private String version;
private String description;
private List<Module> modules;
private List<Resource> resources;
private List<String> parameters;
private List<String> extensions;
private String contrato;
模板(关系的所有者):
@ManyToMany
@JoinTable(name="TEMPLATE_CONFIGURATIONS",
joinColumns=
@JoinColumn(name="ID", referencedColumnName="ID"),
inverseJoinColumns=
@JoinColumn(name="ID", referencedColumnName="ID")
)
private List<Configuration> configurations;
我希望有多对多的关系,因为“模板”包含几个“配置”,而“配置”可以在几个“模板”(配置)中。
答案
一般来说,你定义的例外是在定义Generics
时定义Many
,如here所解释的那样。
虽然在你的情况下,还有一些其他问题。
由于您已在@ManyToMany
和Configuration
之间应用了Template
关系,因此应在Configuration Entity中对此进行定义。
@ManyToMany(mappedBy="configurations")
private List<Template> templates;
如果您要求配置只能在模板上有模板可以有多个配置,那么您应该使用OneToMany
关系。在配置实体中,您将拥有:
@ManyToOne(mappedBy="configurations")
private Template template;
在模板实体中,您将拥有
@OneToMany
private List<Configuration> configurations;
希望这可以帮助!!
以上是关于如何在Java-EE中使用hibernate实现ManyToMany关系?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 java-ee8、microProfile 4.0、Openliberty 21 和 Docker 设置特定于阶段的微配置文件配置
如何通过在 Hibernate 中使用限制和标准来实现“不在”?