Re: overriding accesors in entity needs tranisent declaration

2009-08-07 Thread pdd
Interestingly, Hibernate has similar behavior but little better in the sense that it at least calls the overridden accessors. https://forum.hibernate.org/viewtopic.php?f=1&t=998837 Can this be fixed? -- View this message in context: http://n2.nabble.com/overriding-accesors-in-entity-need-trani

Re: overriding accesors in entity needs tranisent declaration

2009-08-06 Thread pdd
Here is the output from build-time enhancer. Buildfile: build.xml enhance: [openjpac] 463 UserAdminTestCase WARN [main] openjpa.MetaData - No setter was found for method new in type com.example.model.impl.UserModelBaseImpl while searching for persistent properties. This method will be ignor

Re: overriding accesors in entity needs tranisent declaration

2009-08-05 Thread Pinaki Poddar
Hi, 1. are you enhancing your entities at build-time? If not, try that first. Does enhancement work without warning? - Pinaki -- View this message in context: http://n2.nabble.com/overriding-accesors-in-entity-need-tranisent-declaration-tp3363414p3395146.html Sent from the OpenJPA User

Re: overriding accesors in entity needs tranisent declaration

2009-08-04 Thread pdd
Can someone help please? -- View this message in context: http://n2.nabble.com/overriding-accesors-in-entity-need-tranisent-declaration-tp3363414p3386510.html Sent from the OpenJPA Users mailing list archive at Nabble.com.

Re: overriding accesors in entity needs tranisent declaration

2009-08-02 Thread pdd
Digging further into this, there is a major difference in the way the entity class is instantiated by EciplseLink versus OpenJPA. When using eclipselink w/o the transient declaration, the entity class's overridden setters are called (which in turn call super). While using OpenJPA with transient d