Hibernate Embedded/Embeddable 不为空异常

发布于 2024-10-25 02:53:13 字数 441 浏览 1 评论 0原文

在所属类中:

...
@Embedded
private LatLon location;
...

在引用的类中:

@Embeddable
public class LatLon implements Serializable {
    private double lat;
    private double lon;
    ...
}

当我尝试使用 LatLon 的 null 值保存所属类的实例时:

org.hibernate.PropertyValueException:not-null 属性引用 a null 或瞬态值:com.*.location

我该怎么做才能允许该值在所属类中为空?我尝试将其设置为可为空,但没有效果。

In the owning class:

...
@Embedded
private LatLon location;
...

In the referenced class:

@Embeddable
public class LatLon implements Serializable {
    private double lat;
    private double lon;
    ...
}

When I try to save an instance of the owning class with a null value for LatLon:

org.hibernate.PropertyValueException: not-null property references a null or transient value: com.*.location.

What can I do to allow this value to be null in the owning class? I have tried making it Nullable and that had no effect.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

楠木可依 2024-11-01 02:53:13

这是因为您的嵌入类中有 double 属性,因此 Hibernate 会为它们生成非空列。将它们的类型更改为Double

It's caused by the fact that you have double properties in your embeddable class, so that Hibernate generates not null columns for them. Change their types to Double.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文