@Immutable 与 @Entity 以及 @Column 上的 insertable=false 和 updateable=false
如果我在实体上使用@Immutable
注释并在@Column
注释上添加updatable
和insertable
属性,那会吗?是多余的吗?
@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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用这两种方法来使实体不可变。所以是的,这是多余的。我知道 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 theupdatable=false
.