Currently Infinispan remote dialect is not capable of implement a join table strategy to map associations to datastore caches. In Join table is used, speaking of Hibernate ORM 5.3.0.Final , also for OneToMany association if a @JoinColumn annotation is not defined or on field and if the association is bidirectional unidirectional . Futhermore join table strategy is used of course also 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. |
|