Hibernate Postload 和引用实体上的 null 字段
我有两个实体,如下所示:
@Entity
public class Project {
@Id
private id;
private String name;
...
}
@Entity
public class Person {
@Id
private id;
private String name;
@ManyToOne
private Project project;
@PostLoad
void onLoad(){
if (project.getName() == null){
//It's always null!!!
}
}
...
}
正如代码所示,在 onLoad 时,相关实体的字段始终为 null - 事实上,相关实体的所有字段都是 null -。我需要 Hibernate 在调用 onLoad 之前获取该字段。
有什么想法吗?
谢谢。
I have two entities like the ones below:
@Entity
public class Project {
@Id
private id;
private String name;
...
}
@Entity
public class Person {
@Id
private id;
private String name;
@ManyToOne
private Project project;
@PostLoad
void onLoad(){
if (project.getName() == null){
//It's always null!!!
}
}
...
}
As the code says, on onLoad the field of the related entity is always null -in fact, all field of related entity are null-. I need Hibernate to fetch the field before calling onLoad.
Any idea?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须设置一个
获取策略
,它可能是:或者
您还应该使用外部 ID 定义连接列。
在你的代码中:
You must set a
Fetch strategy
it might be:or
You should define also the join column with the foreign ID.
In your code: