toplink « Eclipse « JPA Q&A





1. An alternative to Hibernate or TopLink?    stackoverflow.com

Is there a viable alternative to Hibernate? Preferably something that doesn't base itself on JPA. Our problem is that we are building a complex (as in, many objects refer to each other) ...

2. What is the difference between TopLink Essentials & EclipseLink    stackoverflow.com

What is the difference between TopLink Essentials & EclipseLink, both originates from Oracle ?

3. Pitfalls and practical Use-Cases: Toplink, Hibernate, Eclipse Link, Ibatis     stackoverflow.com

I worked a lot with Hibernate as my JPA implementation. In most cases it works fine! But I have also seen a lot of pitfalls:

  • Remoting with persisted Objects is difficult, because ...

4. Unknown entity class error message even though the entity is marked with @Entity annotation    stackoverflow.com

I am building REST web app using Netbean6.9.1 and JPA EclipseLink. The issue I'm facing is even though my entity class MasatoTable is marked with Entity annotation, I get error:

   ...

6. NetBeans Platform CRUD Application Tutorial, eclipselink, toplink, hibernate    forums.netbeans.org

Gidday Netbeans Users forum, re: http://platform.netbeans.org/tutorials/nbm-crud.html (NetBeans Platform CRUD Application Tutorial) I am new to Netbeans RCP/Modules and only intermediate Java developer and I'd appreciate help here. I can't get this ...

7. JPA+Jboss+eclipse and ClassNotFoundException (oracle.toplink.essentials.PersistenceProvider)    coderanch.com

Hello everyone. I developed a really simple app which use JPA. It is my first application which is using ejb/jpa. Anyway, when I tried to connect two entities by relation OneToMany/ManyToOne I've got a problem when I try to deploy project. So this is my entity sample code: import java.util.Collection; import javax.persistence.*; @Entity @Table(name = "ARTYSCI") public class Artysci{ @Id @GeneratedValue(strategy= ...