hello,
i have a general question about hibernate/jpa
currently, i´m working on the open-source software jbpm which uses hibernate as the jpa implementation. is it possible to replace hibernate by another jpa provider?
(in my case, it would be datanucleus)
when i have a look at the source code, most times the standard jpa imports are used:
Code:
import javax.persistence.Id;
import javax.persistence.JoinTable;
import javax.persistence.Lob;
import javax.persistence.PrePersist;
import javax.persistence.PreUpdate;
but sometimes there are imports like
Code:
import org.hibernate.Session
import org.hibernate.annotations.CollectionOfElements;
so am i bound to hibernate?