@Immutable 与 @Entity 以及 @Column 上的 insertable=false 和 updateable=false

发布于 2024-10-14 10:16:03 字数 271 浏览 1 评论 0原文

如果我在实体上使用@Immutable注释并在@Column注释上添加updatableinsertable属性,那会吗?是多余的吗?

@Entity
@Immutable
public class SomeEntity...
{
 @Column(name="xyz" updatable=false, insertable=false)
 private String xyz;
 ...
}

If I use @Immutable annotation on an entity and add updatable and insertable attributes on @Column annotation, will that be redundant?

@Entity
@Immutable
public class SomeEntity...
{
 @Column(name="xyz" updatable=false, insertable=false)
 private String xyz;
 ...
}

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

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

发布评论

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

评论(1

鸩远一方 2024-10-21 10:16:03

您可以使用这两种方法来使实体不可变。所以是的,这是多余的。我知道 Hibernate(如果您使用的是 Hibernate)会对 @Immutable 注释的实体进行一些优化。我无法判断 updatable=false

These are the two method you can use to make your entity immutable. So yes this is redundant. I know that Hibernate (if that is what you use) will make some optimizations on entity annotated @Immutable. I can't tell for the updatable=false.

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