When tagged as @Entity, each attribute of a class is mapped to one database column. I have some classes where I want to add some fields for internal usage, but I don't want them to be mapped by hibernate to a database column. Is there a way to do so?

Thanks

link|improve this question

64% accept rate
feedback

1 Answer

up vote 6 down vote accepted

Its either you mark the variables with @javax.persistence.Transient or declare it as transient.

@javax.persistence.Transient
String myTransietnColumn;



transient String myAnotherTransientColumn;
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.