EclipseLink delivers a comprehensive open-source Java persistence solution.
I have an entity mapped as following: @Entity @Table(name = "Groups") @IdClass(value = GroupId.class) public class Group implements Serializable { @…
hibernate jpa many-to-many eclipselinkI'm new to JAXB and I want to change the default namespace prefix using EclipseLink MOXy. My package-info.java has …
xml jaxb eclipselink moxyI want to handle concurrent execution by using Optimistic Locking. I have included @Version annotation in my entity class. In …
jpa locking eclipselink optimistic-locking optimistic-concurrencyI have a Maven-built web-app that uses JPA 2.0 at the back end. The JPA provider is EclipseLink 2.3.2. When I build …
maven netbeans eclipselink netbeans-7I am using EclipseLink 2.3.0. I have a method that I am calling from a unit test (hence outside of a …
jpa transactions eclipselinkI'm using EclipseLink on GlassFish 3.1.1 and I'm trying to understand this exception: javax.ejb.EJBException: Illegal non-business method access on …
servlets jpa ejb eclipselinkI managed to insert crew for my movie - now I want to do it the right way. Entities (abbreviated): @…
jpa eclipselink jpa-2.0 entitymanagerI have a Client and Affiliate class, inheriting from Person class. Joined inheritance strategy type is being used - each …
java jpa eclipselink discriminatorI have my model: @XmlRootElement @XmlAccessorType(XmlAccessType.FIELD) public class CustomerTest { private Long id; @XmlPath("contact-info/billing-address") private AddressTest billingAddress; @…
jaxb eclipselink moxyI'm having problems when saving entities in my DB. I have something like (very simplified) : @Entity public class Building { @OneToMany(…
java jpa eclipselink cascade many-to-one