Hi folks,
I'm creating a Hibernate OGM implementation for Datomic, and I have a question
about IDs.
Say I have the entity
@Entity
public class Person {
@Id
@GeneratedValue
Long id;
}
In Datomic, you have to assign a temporary ID before submitting the
transaction. Datomic will then return the actual persistence ID after the
transaction has completed. My question is, how can I get the actual ID back
into the entity?
Thanks!
Josiah
_______________________________________________
hibernate-dev mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/hibernate-dev