Within a GF EJB container, I am trying to dynamically discover my JPA entity classes using ServiceLoader and add them to the the JPA configuration prior to the container creating the EntityManagerFactory. The problem I am having is finding a way to "intercept" the PersistenceProvider configuration for a specific persistence unit prior to the EMF creation.
I attempted to use Hibernate by extending the HibernatePersistence persistence provider, but have had a couple problems (see Using Hibernate Ejb3Configuration with Container Management). I am open to any suggestions. My requirements are that it must run on the EJB container and utilize JPA for persistence. I would prefer to stay with GF and stay as vendor neutral to all technologies as possible (but would appreciate any suggestions).
Thanks!