From the Gilead official site:
Note that you still have to properly initialize PersistentBeanManager with associated PersistenceUtil, proxy st
If you're using JPA with Hibernate, you can use HibernateJpaUtil
like this:
String PERSISTENCE_UNIT_NAME = "...";
EntityManagerFactory emf =
Persistence.createEntityManagerFactory(PERSISTENCE_UNIT_NAME);
HibernateJpaUtil hibernateJpaUtil = new HibernateJpaUtil();
hibernateJpaUtil.setEntityManagerFactory(emf);
PersistentBeanManager persistentBeanManager =
GwtConfigurationHelper.initGwtStatelessBeanManager(hibernateJpaUtil);
setBeanManager(persistentBeanManager);
If you're using JPA with another implementation than Hibernate, you're probably currently out of luck - or you'd have to implement IPersistenceUtil
yourself.
http://noon.gilead.free.fr/gilead/index.php?page=overview :
even if Hibernate is the only one currently supported, OpenJPA and EclipseLink supports is planned