Hibernate 未获取公共成员
考虑以下代码:
@Entity
@Table(name = "a")
public class A implements Serializable
{
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name="id")
public int id;
@Transient
public B b;
public B getB()
{
return B;
}
}
当我获取 A 时,我手动填充 B(另一个休眠实体)。 如果我尝试使用 ab 进行访问,则会失败,但是,如果我使用 a.getB(); 然后它就成功了。
为什么是这样?
Consider the following code:
@Entity
@Table(name = "a")
public class A implements Serializable
{
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name="id")
public int id;
@Transient
public B b;
public B getB()
{
return B;
}
}
When I fetch A, I'm manually filling B (another hibernate entity). If I try and access by by using a.b, then it fails, but, if I user a.getB(); then it succeeds.
Why is this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
听起来像是一个懒惰的获取问题。 当您尝试直接访问它时,公共引用为空,但是当您使用“get”进行访问时,Hibernate 知道调用数据库并为您提供该实例。
Sounds like a lazy fetching issue. The public reference is null when you try to access it directly, but when you do it with "get", Hibernate knows to call out to the database and hydrate that instance for you.
因为b场是瞬态的。
有必要让它暂时吗? 尝试将其删除。
Because b field is transient.
Is there any need for it to be transient? Try removing it.