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

@Entity
@Immutable
public class SomeEntity...
{
 @Column(name = "xyz", nullable = false, updatable=false, insertable=false)
 private String xyz;
 .....
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.