In my project I'm not able to upgrade hibernate from 5.0.3 to 5.0.4 because I receive an error of this kind:
org.hibernate.boot.MappingException: HHH000474: Ambiguous persistent property methods detected on wf.bitcoin.chainmaster.domain.CmAccount; mark one as @Transient : [public my.domain.CmAccount my.domain.CmAccount.getMasterAccount()] and [public boolean wf.bitcoin.chainmaster.domain.CmAccount.isMasterAccount()
But since the @Id is an attribute of a field I'm using field persistence and hibernate should not care what my methods are, right?
Anyway, everything worked for all the hibernate versions from 4.x.y up to 5.0.3
|