我有两个实体:
@Entity
public class File
.......
@Id @GeneratedValue(strategy=GenerationType.AUTO)
private int id;
@OneToMany(fetch=FetchType.LAZY, mappedBy="file", cascade=CascadeType.ALL)
private List<Tag> tags;
.......
OTHER PROPERTIES
.......
@Entity
public class Tag
.......
@Id @GeneratedValue(strategy=GenerationType.AUTO)
private int id;
@ManyToOne
@JoinColumn(name="file_id")
private File file;
@Column
private String tag;
.......
OTHER PROPERTIES
.......
我正在尝试通过执行以下操作插入File(以及随后的Tag):
File file = new File();
Tag tag = new Tag();
tag.setTag("tag1");
Tag2 tag2 = new Tag();
tag2.setTag("tag2");
List<Tag> tags = new ArrayList<Tag>();
tags.add(tag);
tags.add(tag2);
file.setTags(tags);
---Add other file attributes here---
然后我使用以下方法将文件插入我的DAO中
sessionFactory.getCurrentSession().saveOrUpdate(file);
在我的日志中,我看到插入到我的“文件”表中,并且在我的标记表中插入了2个,但是,我的标记表中指向我的文件表(file_id)的外键是NULL。
我可能做错了什么?
答案 0 :(得分:14)
您没有为标记设置文件,只将标记设置为文件。请记住,在OOP中,与关系模型相反,您必须设置关系的两端。您只能因为向文件添加了一组标记而无法从标记导航到文件。在您的情况下,您可以从文件导航到标记(即:列出文件的所有标记)。通过仅查看标签,您无法分辨标签所属的文件。
通常在其中一个模型中使用辅助方法,如下所示:
public void addTag(Tag tag) {
this.tags.add(tag);
tag.setFile(this);
}
请参阅this以获取示例(来自Hibernate的测试套件):
答案 1 :(得分:3)
数据库中的外键反映了Tag.file
的状态(因为Tag
是关系的拥有方,作为双向多对一关系中的“多”方)。
我看不到你在哪里设置它。