Tagged Questions
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.
31
votes
7answers
3k views
The JPA hashCode() / equals() dilemma
There have been some discussions here about JPA entities and which hashCode() / equals() implementation should be used for JPA entity classes.
Most of them if not all depend on Hibernate, but I'd like ...
11
votes
2answers
3k views
hibernate or eclipselink?
It seems like EclipseLink has been chosen by sun as the reference implementation of JPA 2.0, nevertheless I see lots of people continue to use hibernate...
I have no experience with any of them, so I ...
7
votes
1answer
2k views
JPA2: Case-insensitive like matching anywhere
I have been using Hibernate Restrictions in JPA 1.0 ( Hibernate driver ). There is defined Restrictions.ilike("column","keyword", MatchMode.ANYWHERE) which tests if the keyword matching the column ...
7
votes
1answer
7k views
Parameter in like clause JPQL
I am trying to write a JPQL query with a like clause:
...LIKE '%:code%'
I would like to have code=4 and find
455
554
646
...
I cannot pass :code = '%value%'
namedQuery.setParameter("%" + ...
6
votes
1answer
255 views
OSGi + JPA(postgresql)
I tried to use JPA in OSGi and faced with this exception:
javax.persistence.PersistenceException: No Persistence provider for EntityManager named test
There are simple entity class, file ...
6
votes
4answers
92 views
Should the id field of a JPA entity be considered in equals and hashCode?
I hit a problem when writing tests for a database application using JPA2 and EclipseLink:
I add some entity to a database, retrieve it later and want to compare it to an instance which has the ...
6
votes
2answers
684 views
JodaTime with JPA, PostgreSQL and NULL values
I'm trying to persists JodaTime DateTime fields with JPA to PostgreSQL but run into troubles with null pointers to database NULL values.
I'm working with the NetBeans 7 beta 2 IDE. The persistence ...
6
votes
5answers
4k views
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 to a better mirror then that would already be the answer.
If not: where did the repository ...
6
votes
2answers
2k views
Difference Hibernate 3.5 / JPA 2.0
So far, I always prefered to use Hibernate directly rather than JPA 1.0, because JPA was lacking some of the important features I needed and Hibernate provided: Criteria API, second level cache, ...
6
votes
5answers
3k views
Java/JAXB: Unmarshall Xml to specific subclass based on an attribute
Is it possible to use JAXB to unmarshall xml to a specific Java class based on an attribute of the xml?
<shapes>
<shape type="square" points="4" square-specific-attribute="foo" />
...
6
votes
1answer
1k views
What is the difference between TopLink Essentials & EclipseLink
What is the difference between TopLink Essentials & EclipseLink, both originates from Oracle ?
5
votes
1answer
163 views
Derby Auto-Increment and Eclipselink UnitOfWork
There's seems a problem between Eclipslink and Derby Auto-Icrement column when i insert value via UnitOfWork.
SessionFactory sessionFactory = new SessionFactory("default");
Session session = ...
5
votes
2answers
417 views
Can an @Embeddable class be private?
Is there is anything in the JPA specification that describes what a valid @Embeddable class can be? I have looked but cannot find anything.
I am using EclipseLink (2.3.0-M7 - full build string ...
5
votes
1answer
282 views
Hibernate Envers for EclipseLink (Entity Auditing)
I have been looking at Hibernate Envers for entity auditing. I'm using EclipseLink but I'd like something similar.
I've seen some implementations that involve creating a SessionCustomizer to handle ...
5
votes
3answers
2k views
Unknown entity class error message even though the entity is marked with @Entity annotation
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:
...
5
votes
4answers
841 views
javax.persistence.* sources, where?
I might be missing something really obvious here, but i couldn't find the sources for a few classes from the javax.persistence package.
I'm using EclipseLink as a JPA provider. When i tried Ctrl+left ...
5
votes
2answers
521 views
What is a JPA implementation?
I'm getting started with JPA, and I'm confused as to what exactly the JPA implementation(EclipseLink, TopLink, Hibernate, etc.) does.
I understand the theoretical role of JPA, but what is the ...
5
votes
5answers
283 views
Under what conditions would SELECT by PRIMARY KEY be slow?
Chasing down some DB performance issues in a fairly typical EclipseLink/JPA application.
I am seeing frequent queries that are taking 25-100ms. These are simple queries, just selecting all columns ...
5
votes
2answers
7k views
Disable caching in JPA (eclipselink)
I want to use JPA (eclipselink) to get data from my database. The database is changed by a number of other sources and I therefore want to go back to the database for every find I execute. I have read ...
5
votes
2answers
498 views
Is there a Maven build for eclipselink that makes the OSGi bundles run in Felix and others?
The Eclipselink OSGi bundles seem have trouble working in some OSGi containers, notably Felix, because they fail to import packages (and that are exported by the system) that they actually require. ...
5
votes
3answers
3k views
JPA Inheritance demands ID in subclass
I have a problem with my jpa domain model. I am just trying to play around with simple inheritance for which I use a simple Person base-class and and a Customer subclass. According to the official ...
5
votes
11answers
4k views
An alternative to Hibernate or TopLink?
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) stateful RIA ...
4
votes
0answers
36 views
Why performance degradation with query hint FIRST_ROWS(1000)? [migrated]
I have a query with user supplied arguments that can produce a very high amount of rows depending on the user's input.
In case the user supplies very unselective arguments, the query takes a lot of ...
4
votes
4answers
195 views
JPA. Transaction problems while migrating from Hibernate to Eclipselink
Standard JEE environment: JPA + EJB called from JSF beans. Server: glassfish 3.1.1
Code which is developed, tested and deployed with Hibernate as JPA provider, refuses to persist entities with ...
4
votes
5answers
242 views
Java web application gets slower if running a day
I am developing a java web application using the apache wicket framework and Eclipselink with PostgreSQL for OR mapping.
If i run the application (on localhost or on a remote server) everything is ...
4
votes
3answers
275 views
Libraries for hash partitioning/Sharding with JPA
My department has decided move to hash partitioning/sharding for some of our large Oracle databases. We will be splitting our entities across different schemas. I've been tasked to do a spike to ...
4
votes
3answers
233 views
Avoiding N+One selects and Invalid results from eclipselink with batch read
I'm trying to cut down the number of n+1 selects incurred by my application, the application uses EclipseLink as an ORM and in as many places as possible I've tried to add the batch read hint to ...
4
votes
1answer
238 views
JAXB 2.x: Abstract methods get marshalled as Attribute
I have an abstract root class, let's say A.
And I have several implementation classes extending A.
A has FIELD annotation as well as some @XmlElement annotated properties.
A also has an abstract ...
4
votes
3answers
616 views
Entity is not weaved. Eclipselink 2.1 + Dynamic Weaving
I have a J2EE application that is running on tomcat with a couple of entity classes and using eclipselink 2.1 and jpa 2.0.
The entities are EmailNotification and EmailNotificationQueueRow.
@Entity
...
4
votes
1answer
1k views
JEE6 JPA 2 ManyToOne Relation Creates Invalid Foreign Key
I am trying to create two entities where both entities have embeddedIds. One of the entities have 2 references to the other entity, where both of those references are related as ManyToOne.
Example ...
4
votes
1answer
377 views
Jpa entities over a JAX WS services without infinite loop
How can I send JPA generated entities over an JAX WS web service without getting the
an XML infinite cycle exception because of the cycle of references in those entities?
Any idea? I found this MOXy ...
4
votes
1answer
1k views
Where to include jaxb.properties file?
I have REST (Jersey) webservice that makes use of some data objects that are marshalled/unmarshalled to/from XML. The data objects are in a separate project/jar that the webservice war depends on.
...
4
votes
3answers
1k views
EclipseLink with Spring - Can't persist into Db
I am using Spring + EclipseLink 2 to manage entity on a Derby database. Select object from db works fine but when I try to persist one, nothing happens. Program executes correctly and no exception are ...
4
votes
4answers
353 views
EclipseLink Document Doesn't Explain “session”
I am trying to execute a query using EclipseLink following the crappy documentation at http://wiki.eclipse.org/Introduction_to_EclipseLink_Expressions_%28ELUG%29, but every time you need to execute an ...
4
votes
3answers
2k views
Execute sql script after jpa/EclipseLink created tables?
is there a possibility to execute an sql script, after EclipseLink generated the ddl?
In other words, is it possible that the EclipseLink property "eclipselink.ddl-generation" with ...
4
votes
1answer
436 views
Removing associated entity JPA (or delete orphan equivalent in EclipseLink)
I have a question regarding JPA persistence in Glassfish.
Situation:
I have a Supplier class that has a 1:n bidirectional relation to SupplierAddress.
I would like to have the following behaviour:
...
4
votes
2answers
2k views
Is it possible to output generated SQL using EclipseLink without having to increase log verbosity?
I want to output the SQL generated by EclipseLink to the console, during development. However, I could only do so using the logging level FINE. I have a complex domain model composed of many classes, ...
3
votes
1answer
65 views
JPA : multiple transactions
I'm trying to make 2 different DB calls with the same transaction entity. I know that I can make both interrogations between begin() and commit() but I'm trying this for educational purposes only.
...
3
votes
2answers
404 views
Where did the EclipseLink/Maven repository go to? (again)
Yes, I know, the subject was asked before, but the repository moved again. Has anybody seen it? I would be much obliged.
3
votes
1answer
302 views
How to audit JPA without Hibernate Envers
I need to make an audit module to my Java Web App. I use EclipseLink, not Hibernate (can't use Envers). I searched a lot some way to get the SQL or JPQL that JPA is executing, so I could log something ...
3
votes
2answers
368 views
How do I catch the constraint violation exception from EclipseLink?
I am using EclipseLink in my web application, and I am having a hard time gracefully catching and handling Exceptions it generates. I see from this thread what seems to be a similar problem, but I ...
3
votes
1answer
100 views
Eclipselink caching problem (one database for two systems)
I have two online-systems running. Both of them are using eclipselink.
The first system is a administration-system, where the prices for the second application are managed.
The second system is a ...
3
votes
1answer
76 views
JPA to JAXB issue
I have entities which are created from eclipseLink.I am trying to use the same objects to get generate an xml.I have a primarykey reference inside a class and I am not sure what annotation I need to ...
3
votes
1answer
150 views
With MOXy and XPath, is it possible to unmarshal a list of attributes?
Edit: here's how I'm loading the XML document, as I used it in Blaise's answer. I'm loading it like this because I want to work with a node, not the whole doc. Even using the whole document I'm ...
3
votes
3answers
353 views
JPA Enum ORDINAL vs STRING
Its is possible to define enumerations in JPA either using
@Enumerated(EnumType.ORDINAL)
or
@Enumerated(EnumType.STRING)
I wonder what are advantages and disadvantages of those two definitions?
...
3
votes
2answers
49 views
Should I specify names via @Column and @Table always or only when necessary
This is more of a question of best practice, hoping to learn from others experiences. Would you recommend always specifying the names of columns and tables explicitly using @Column(name=) and ...
3
votes
1answer
88 views
Is there a possibility to hide the “@type” entry when marshalling subclasses to JSON using EclipseLink MOXy (JAXB)?
I'm about to develop a JAX-RS based RESTful web service and I use MOXy (JAXB) in order to automatically generate my web service's JSON responses.
Everything is cool, but due to the fact that the web ...
3
votes
2answers
297 views
Should I let JPA or the database cascade deletions?
Let's say we have two entities, A and B. B has a many-to-one relationship to A like follows:
@Entity
public class A {
@OneToMany(mappedBy="a_id")
private List<B> children;
}
@Entity
public ...
3
votes
1answer
463 views
JPA persistence property interfering with JAXB
I have a library of JAXB/Entity objects I am using to unmarshall a xml stream. I can do so with no problems just running as a Java SE application. I have moved everything over to a Java EE app using ...
3
votes
1answer
182 views
Sequences with Dynamic Entities in EclipseLink
I'm trying to get sequences with Dynamic Entities to work in EclipseLink and I need some help.
I'm defining my dynamic entity like the following:
EntityManagerFactory emf = ...