Sunday 6 November 2011

JPA transient fields

Transient Fields
static int transient1; // not persistent because of static
final int transient2 = 0;  // not persistent because of final
transient int transient3; // not persistent because of transient
@Transient int transient4; // not persistent because of @Transient
References
http://www.objectdb.com/java/jpa/entity/fields

No comments:

Post a Comment