EclipseLink delivers a comprehensive open-source Java persistence solution. EclipseLink focuses on standards (JPA, JAXB, SDO) with advanced features, performance and scalability for enterprise software developers across data sources, formats, and containers.

learn more… | top users | synonyms

0
votes
0answers
19 views

How can I make a unhandled Objects send over by a Webservice/RMI Interface handled again by Eclipselink?

We have to make the Server for a application that communicates with it's Client over RMI and/or Webservice. We have to use ORM (Eclipselink) to write and read from the databse. So I implemented the ...
0
votes
1answer
17 views

One-to-Many and One-To-One on same object

The "User" entity is a one-to-many bidir relationship of "Car". The "Car" entity is a one-to-many bidir relationship of the "CarPhoto" entity (which is a inheritance of "Photo" entity). The "Car" ...
1
vote
2answers
29 views

Strange “missing an @XmlRootElement annotation” error, only with Maven, works in Eclipse

I wrote code that marshals xml data. Before marshaling the data to output i validate the data the way Blaise Doughan suggests here Running a simple test in eclipse (marshaling data an validating it) ...
0
votes
2answers
38 views

Installing JPA pluggin for Eclipse juno

I'm new to eclipse, I want to install JPA plugging so I can benefit of the JPA wizard and import entity classes easily ... I tried to download it using eclipse install software menu using eclipse juno ...
1
vote
1answer
50 views

Run JPA using Maven and Intellij IDEA 12

I have just switch over to Intellij IDEA and I am trying to test my JPA entities using a RESOURCE_LOCAL persistence unit. My environment is currently using EclipseLink, MySQL and Maven. At the moment ...
0
votes
1answer
19 views

Map a Map<Long, List<POJO>> through JPA eclipselink

I have a similar requirement as that of problem statement defined in I want to map a Map<Long, List<POJO>> through JPA I am using eclipselink, I also had to create a separate class ...
0
votes
1answer
29 views

EntityListeners not called

I have a class like this: @Entity @Customizer(value=UsuarioCustomizer.class) @Indexes({ @Index(name="idx_login_senha",columnNames={"usuario","senha"}) }) @EntityListeners({Hashr.class}) public ...
-2
votes
2answers
39 views

Eclipselink -Glassfish project Object is not a known entity type error

In a JSF 2.1 - Spring 3.1 integrated project.I m trying to handle transaction by container i m using eclipselink 2.3.2 ,Glassfish 3.1.2 and Maven on my project and working on Netbeans IDE 7.2 . At ...
1
vote
1answer
31 views

Cannot import EclipseLink MOXy

I downloaded the latest EclipseLink (2.4) and put the eclipselink.jar in my folder. However, I do not see the @XmlInverseReference annotation anywhere and I cannot import ...
1
vote
2answers
46 views

How do I properly annotate two JPA entities which are in a parent child relationship?

Maybe this is a question with an easy answer ... but I don't get it running. At persist() I get the exception that the referential key in the child table is null (which of course is not allowed by the ...
0
votes
1answer
39 views

Can't create a EntityManager in JavaFx

I'm experiencing a very unpleasing and not clear case with JPA and JavaFx, I tried to ask about this in two other threads which are : JPA EntityManager and JavaFx and Can't persist using Entity ...
0
votes
0answers
19 views

How do I get a non-Transient field into @PrePersist or any other Listener method with EclipseLink?

I need a field (String would be OK) in a @PrePersist method of an EntityListener. Any field which does not go to the database (meaning a @Transient field) does not reach the @PrePersist (or any other) ...
0
votes
0answers
20 views

JPA (EclipseLink 2.4) not always loading child object

I'm using Glassfish 3.1.2 with integrated EclipseLink JPA implementation. My problem is that child object of a specific parent is not always loaded (sometimes it is, sometimes it is not). I'm also ...
1
vote
1answer
33 views

a query result from a selected entity returns null

i have to retrieve the last visit of a selected patient from datatable the problem is that the query always returns bull , here is the responsible code : public class PatientDao implements ...
0
votes
0answers
44 views

JPA setMaxResults not working - query returns ALL rows

I've been banging my head against a wall for the last 4 hours on this one, trying varying permutations, updating libraries, etc - to no avail. I am calling my MySQL DB, where a table 'links' has ...
0
votes
1answer
24 views

Casting in JPQL when using NEW

I'm using Eclipselink, and I have the following JPQL query: SELECT NEW javax.faces.model.SelectItem((java.lang.Object) s.id, s.description) FROM Status s WHERE s.active = TRUE The cast before s.id ...
0
votes
1answer
79 views

EclipseLink JPA @OneToMany List is not same in differernt request of same session in Jesery REST

I have two entities as People and Story. Now I post my story and check my stories, but returns different Story List occasionally. I mean, usr.stories.hashCode() is not same in differernt request from ...
2
votes
1answer
30 views

How would I audit the changes to a list of JPA entities?

I've got two lists of entities: One that is the current state of the rows in the DB, the other is the changes that were made to the list. How do I audit the rows that were deleted, added, and the ...
-1
votes
0answers
31 views

how to return value in anonymous pl sql using eclipselink

I need guidance on how to retrieve the value of a variable in a plsql anonymous using EclipseLink. Below I leave a sample query. I know I could use functions and stored procedures, however there are ...
0
votes
0answers
13 views

EclipseLink javadoc, jump from API to implementation

Browsing the javadoc of EclipseLink, i need to get information about specific EclipseLink properties. Is there a way to jump from this page ...
0
votes
0answers
38 views

Oracle ORDImage and EclipseLink || Hibernate

I'm trying to create ORM with EclipseLink in my Java EE + OracleDB application. The problem is that I don't know how to map ORDImage type from database. I tried to use @Struct but without a success. ...
0
votes
0answers
27 views

Populate TableView from JPA

How I can populate JavaFX TableView from any JPA framework? now i use EclipseLink and this my 2 simple Entities: Sales.java @Entity @Table(name="SALES") public class Sales implements Serializable { ...
0
votes
1answer
21 views

EclipseLink does not find my Converter vlass

I have a JPA @Entity 'RecipestepBO' which uses a @Converter: @Entity @Converter( name="UnitConverter", converterClass=com.lemcke.share.recipe.Unit.class ) @Table(name = "recipestep") public class ...
0
votes
1answer
25 views

Netbeans, get the right javadoc for EclipseLink

In Netbeans 7.2.1 i've created a new java project In the project properties, in the libraries section, i've added "EclipseLink (JPA 2.0)" that is a library that ships with Netbeans (at least with ...
0
votes
2answers
44 views

java.lang.IllegalArgumentException: Object: se.nackademin.BeachBoysSweden.entities.Book@79da4980 is not a known entity type

Im working on school assignment but keep getting java.lang.IllegalArgumentException when trying to save my entity to mysql database. This project uses JPA, EJB, JSF, Glassfish and connection pool.Keep ...
0
votes
1answer
13 views

EclipseLink nullable column but unique

is it possible to define a column with EclipseLink, which can be null but if a value != null exists, there should only be unique values within the column. How I can model that? Thank you Andre
1
vote
2answers
38 views

EclipseLink - JPA and MOXy - different views on the same data model

here is the challange... I have a complex distributed system based on the same model It looks like this: A <-(XML)-> B <-(JSON)-> C A, B and C are different Applications basicaly ...
0
votes
1answer
17 views

Eclipselink NoSQL embedded documents are Binary or run into an infinite loop while persisiting

I have a Category Class: @Embeddable @NoSql(dataFormat=DataFormatType.MAPPED) public class Category implements Serializable { @Id @GeneratedValue @Field(name="_id") private String id; ...
1
vote
1answer
14 views

Object is not from this UnitOfWork

I get an error saying: Exception [EclipseLink-6004] ... The Object bla bla is not from this UnitOfWork object space, but from the parent session's. The Object was never registered with this ...
0
votes
0answers
19 views

create a function via nativeQuery

I'm trying to insert a function on database via native query, like this EntityManagerImpl entityManagerFunctionConta = (EntityManagerImpl) GermantechEntityManager.getEntityManager(); ...
0
votes
1answer
53 views

JPA Eclipse link query.firstResult() & query.setMaxResults() with Postgres

Postgres supports offset and limit on SQL statements to support pagination style queries. With limit and/or offset in the queries the results come back much faster from the DB. I am using Eclipse ...
0
votes
1answer
19 views

Join tables that are not directly connected to each other

I have three entities: Customer id pk Address id pk customerid Phone id pk custoemrid How would I join in JPQL the Address with Phone Entity via customerid without using ...
0
votes
1answer
14 views

Does BatchFetch change the fetch type?

I am using EclipseLink 2.1.0 in my Java EE application and optimized the loading of nested entity lists using @BatchFetch. Now I'm curious if this Annotation will change the fetch mode, meaning does ...
0
votes
1answer
43 views

JPA - Only primary key is retrieved, other fields returned null

I am new to Java EE. I am using Eclipse Juno + Eclipse Link + MySQL. Currently I have a JPA project and a dynamic web project. The JPA project is included in the web project's build path. I created a ...
0
votes
2answers
28 views

eclipselink inheritance implementation

I am trying to implement ElcipseLink JPA2.0 for inheritance in my project. Can't use annotation. only xml mappings. Here is my code. public class DefaultEntity { } public class ...
0
votes
1answer
22 views

Cannot acquire data source error in JBOSS 5.1.0 GA using EclipseLink

i had deployed successfully my project into JBOSS 5.1 GA using eclipselink with jpa 1.0. But when i am trying to access the database the below error is showing.. 19:40:40,206 INFO [STDOUT] [EL ...
1
vote
1answer
64 views

JAXB - Unexpected elements in XML output

I have a class called Building. It has a list of BuildingBenchAssociation records (List<BuildingBenchAssociation> benches) BuildingBenchAssociation has a composite id made up of buildingId and ...
1
vote
2answers
30 views

JPA's FetchType.LAZY doesn't work?

My provider is: org.eclipse.persistence.jpa.PersistenceProvider My Entity code is: @Entity @NamedQueries( { @NamedQuery(name = "Bank.findAll", query = "select o from Bank o") }) @Table(name = ...
1
vote
2answers
25 views

OneToMany + JoinTable + OrderColumn: Order is written correctly but not read

I have an entity that can consist of itself: class Group { // ... @OneToMany(cascade = CascadeType.ALL, orphanRemoval = true) @JoinTable( name = "group_group", joinColumns ...
1
vote
1answer
24 views

error EclipseLink-4021 when creating EntityManager at runtime why?

I am trying to create EntityManager at runtime so I can set different user name and password from a config.xml Here is the code to to create the EntityManager ...
0
votes
1answer
33 views

Create a web service, JPA entities and DB tables starting with XSDs

I'm working on a contract-first integration where I design the XSD&WSDL files first to provide to the customers to call a specific web service hosted on our servers. I also need to save the ...
0
votes
1answer
47 views

How to get Glassfish/EclipseLink/JPA to cache entityManager.find results that return null

I though I had a problem where JPA/EclipseLink was not caching my entity objects in the L2 shared cache, because when I repeated a request I would get SQL statements hitting Derby. As I debugged this ...
1
vote
1answer
20 views

Discrepancy in marshal behaviour

I am testing MOXy 2.5.0 RC1. I marshalled the following to a string: <c r="C3" xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main"> <v>20</v> </c> It ...
1
vote
1answer
106 views

JPA OneToMany eager fetch does not work

I have a weird problem with two entities with one-to-many relation in JPA. I am using Glassfish 3.1.2.2 with EclipseLink 2.3.2. This is the first entity: @NamedQueries({ ...
0
votes
1answer
24 views

Is the connection Pool configuration kept outside JPA Context?

Hello i am extracting the connection object from the EclipseLink context by calling: Connection con = entityManager.unwrap(Connection.class); i am responsible for releasing the Connection in order ...
0
votes
1answer
22 views

unexpected results of join and count in jpa query

I want to retrieve the count of tags used among all posts for a specific user. e.g. If one user has three posts written and for two posts are tagged with 'someTag', then the query should written the ...
0
votes
2answers
69 views

How to refresh updated entity data without restarting the server

I am using EclipseLink JPA as ORM and web logic 10.3 as an application server in my project. Everything working fine until i got a bug for data refresh. Here is the case one of my entity table row is ...
0
votes
1answer
26 views

How to specify a eclipselink converter for an element collection?

I have a class with an collection of strings representing IP addresses. @ElementCollection @CollectionTable(name = "t_ips", joinColumns = @JoinColumn(name = "fk_parent")) ...
0
votes
1answer
62 views

Bidirectional One-To-Many-relation between two (table-per-class)-inheritance trees

ABSTRACT Say, I have two simple @Entity inheritance trees (one abstract base class with two concrete implementation classes in each tree) of InheritanceType.TABLE_PER_CLASS; and I need a ...
1
vote
1answer
57 views

Bad performance for the entity manager commit - Exponential

Im using the entity manager JPA with eclipse link 2.3 &Derby db and I have model with 10 entities and for each entity I need to store 1000 records ,this process takes about 70 sec. I have test it ...

1 2 3 4 5 34