Details
Description
It should be allowed to overwrite the default persisters for collections and entities. This should go along the lines of Hibernate which allows to set the custom implementations like:
XML:
<entity persister="persisterClass" /> <OneToMany persister="persisterClass" />
Annotation
/** * @Entity(persister="persisterClass") * @OneToMany(persister="persisterClass") */
Any chance you could add this quickly? I need this feature urgently to complete an extension using a custom persister. Thanks in advance.