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; ... }