kundera
kundera copied to clipboard
Kundera should switch between field/property access depending on how entities are annotated
The JPA spec. allows for both field access (vie field reflection) and property access (via implied getXXX()/setXXX() methods) to be used to read/write Entity level properties. This switch occurs depending upon the use of the @Id annotation (on a field, then field access / on a property, then property access). Kundera currently allows only field level access, but should probably allow both.
Marking for 2.0.8 release
Can you please document that only field based access is still implemented? Otherwise, others will end up looking for issues like me. Thanks!
I guess, that's why we have an issue open for this. Marking all open issues on wiki is some sort of redundancy, However i will have a note to mark it for next release.
Has anyone done any work towards implementing this?