Hi,
I've been using Hibernate with JPA, and found it too slow, so am moving my project to use ObjectDB. My Jar is being held inside another application, so I don't want to have to rely on a persistance.xml file being in a particular place. When using Hibernate, I was able to do the following:
org.hibernate.cfg.AnnotationConfiguration config = new AnnotationConfiguration(); config.addAnnotatedClass(mypackage.MyClass.class); org.hibernate.SessionFactory factory = config.buildSessionFactory();
Is it possible to do the equivalent thing with ObjectDB?
Thanks very much,
Phil