On Tue, Nov 25, 2008 at 1:40 PM, Kris Nuttycombe <[EMAIL PROTECTED]>wrote: > > Remember that additionally in JPA, a bare unannotated field on an object > will be inferred as persistent unless annotated @Transient (or, in java, > unless it is declared with the "transient" modifier) >
My reading of the JPA spec, section 2.1.1 is that persistent state is either field-based or property-based, and is determined by where you place your annotations. The @Transient is required for either method where you have a field or property that isn't supposed to be part of the state. Derek --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Lift" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/liftweb?hl=en -~----------~----~----~----~------~----~------~--~---
