Currently Infinispan remote dialect is not capable of implement a join table strategy to map associations to datastore caches. In Hibernate 5.3.0.Final also for OneToMany association if a @JoinColumn annotation is not defined or if the association is bidirectional. Futhermore join table strategy is used of course to implement all ManyToMany associations. If the dialect try to implement JoinTable an OGM001711 error message is risen, showing the text: "This domain model would cause table '%s' to be generated without a primary key. This is not supported on an Infinispan Remote dialect: check that your embedded collections have a proper ordering definition.". In this issue we want to remove this limitation, allowing Infinispan Remote dialect to handle join column mapping on association. |