1. An alternative to Hibernate or TopLink? stackoverflow.comIs 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.comWhat is the difference between TopLink Essentials & EclipseLink, both originates from Oracle ? |
3. Pitfalls and practical Use-Cases: Toplink, Hibernate, Eclipse Link, Ibatis stackoverflow.comI worked a lot with Hibernate as my JPA implementation. In most cases it works fine! But I have also seen a lot of pitfalls:
|
4. Unknown entity class error message even though the entity is marked with @Entity annotation stackoverflow.comI 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.orgGidday 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.comHello 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= ... |