Top "Eclipselink" questions

EclipseLink delivers a comprehensive open-source Java persistence solution.

How to set namespace aware to false?

I'm trying to parse some XML with EclipseLink MOXy, and it's failing on the line with the xsi attribute. If …

java xml jaxb eclipselink moxy
Validate JAXBElement in JPA/JAX-RS Web Service

I have a JAX-RS webservice (Jersey) that is a CRUD interface for JPA (EclipseLink) entities. My entities were autogenerated from …

java validation jaxb jersey eclipselink
EclipseLink 2.7.0 and JPA API 2.2.0 - signature mismatch

When running a project built by maven with the following dependencies: <dependency> <groupId>org.eclipse.persistence&…

java jpa eclipselink jpa-2.2
MOXy JAXB javax.xml.bind.PropertyException

I followed this example: http://wiki.eclipse.org/EclipseLink/Examples/MOXy/JSON_Twitter Now I have this class: import javax.…

java jaxb eclipselink moxy
Registering Converters in JPA 2.1 with EclipseLink

On JavaEE environment, I use JPA 2.1 implementation with EclipseLink, I have some entities that contain enums. So I have created …

java jakarta-ee jpa eclipselink jpa-2.1
What are the difference between: sequence id using JPA @TableGenerator, @GeneratedValue vs database Auto_Increment

Q1.: What is the difference between applying sequence Id in a database using A. CREATE TABLE Person ( id long NOT …

java sql sql-server jpa eclipselink
Where did the EclipseLink/Maven repository go to?

The link quoted on the EclipseLink/Maven wiki ends on an Error 403 page on switch.ch. If you are redirected …

maven-2 eclipselink
eclipselink connection pooling

If connection pooling is not defined in the persistence.xml for eclipse link, what is the default behavior? Will it …

jpa jdbc eclipselink connection-pooling
JPA composite primary key with null value

I have a table containing customer data in an oracle database. Here is a simplified definition: CUSTOMER (CUSTOMER_ID NUMBER …

java jpa eclipselink jpa-2.0 ejb-3.0
OneToMany - what are the differences between join table and foreign key?

There is the possibility to disable the @OneToMany relationship join table with the @JoinColumn annotation. The default is a join …

mapping jpa-2.0 eclipselink one-to-many