The Java Persistence Architecture API (JPA) is a Java specification for accessing, persisting, and managing data between Java objects / classes and a relational database. JPA was defined as part of the EJB 3.0 specification as a replacement for the EJB 2 CMP Entity Beans specification. JPA is now considered the standard industry approach for Object to Relational Mapping (ORM) in the Java Industry.
108
votes
4answers
65k views
JPA EntityManager: Why use persist() over merge()?
EntityManager.merge() can insert new objects and update existing ones.
Why would one want to use persist() (which can only create new objects)?
62
votes
11answers
48k views
Hibernate vs JPA vs JDO - pros and cons of each?
I'm familiar with ORM as a concept, and I've even used nHibernate several years ago for a .NET project; however, I haven't kept up with the topic of ORM in Java and haven't had a chance to use any of ...
34
votes
10answers
11k views
JDO vs JPA for Java on Google App Engine
I want to develop my project on Google App Engine with Struts2. For the database I have two options JPA and JDO. Will you guys please suggest me on it? Both are new for me and I need to learn them. So ...
34
votes
8answers
38k views
JPA CascadeType.ALL does not delete orphans
I am having trouble deleting orphan nodes using JPA with the following mapping
@OneToMany (cascade = CascadeType.ALL, fetch = FetchType.EAGER, mappedBy = "owner")
private List<Bikes> bikes;
I ...
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 ...
30
votes
13answers
20k views
What are the best books for Hibernate & JPA? [closed]
My team is about to build a new product and we are using Hibernate/JPA as the persistence mechanism. There are other book posts on stackoverflow, but I couldn't find one that matched my needs.
My ...
28
votes
8answers
11k views
Why is hibernate open session in view considered a bad practice?
And what kind of alternative strategies do you use for avoiding LazyLoadExceptions?
I do understand that open session in view has issues with:
Layered applications running in different jvm's
...
26
votes
5answers
9k views
Java AppEngine: JDO or JPA, How to choose?
Pros and Cons of choosing JDO or JPA for a Grails Application that will run on Google AppEngine
24
votes
1answer
11k views
Map enum in JPA with fixed values?
I'm looking for the different ways to map an enum using JPA. I especially want to set the integer value of each enum entry and to save only the integer value.
@Entity
@Table(name = "AUTHORITY_")
...
23
votes
11answers
2k views
Why are people continuing to use xml mapping files instead of annotations?
I've observed the strange fact (based on the questions in the hibernate tag) that people are still actively using xml files instead of annotations to specify their ORM (Hibernate/JPA) mappings.
There ...
22
votes
5answers
4k views
Making a OneToOne-relation lazy
In this application we are developing, we noticed that a view was particularly slow. I profiled the view and noticed that there was one query executed by hibernate which took 10 seconds even if there ...
22
votes
4answers
16k views
Injecting EntityManager Vs. EntityManagerFactory
A long question, please bear with me.
We are using Spring+JPA for a web application. My team is debating over injecting EntityManagerFactory in the GenericDAO(a DAO based on Generics something on the ...
21
votes
9answers
14k views
How to configure JPA for testing in Maven
Is there a way to set up a second persistence.xml file in a Maven project such that it is used for testing instead of the normal one that is used for deployment?
I tried putting a persistence.xml ...
20
votes
3answers
10k views
Why does JPA have a @Transient annotation?
Java has the transientkeyword. Why does JPA have @Transient instead of simply using the already existing java keyword?
20
votes
10answers
24k views
Hibernate JPA Sequence (non-Id)
Is it possible to use a DB sequence for some column that is not the identifier/is not part of a composite identifier?
I'm using hibernate as jpa provider, and I have a table that has some columns ...
19
votes
3answers
643 views
Using JPA domain classes in Grails
I want to use a JPA domain model in an application developed using the latest Grails milestone (2.0.0.M1). The JPA domain classes are in the src\java directory of the application.
Based on this blog ...
19
votes
5answers
33k views
How to persist a property of type List<String>in JPA
What is the smartest way to get an entity with a field of type List get persisted?
Command.java
package persistlistofstring;
import java.io.Serializable;
import java.util.ArrayList;
import ...
18
votes
1answer
8k views
What does CascadeType.REFRESH actually do?
What does the CascadeType.REFRESH actually do? The definition for it is "When we refresh an entity all the entities held in this field refresh too", but what does this mean in practice? Could someone ...
17
votes
8answers
17k views
JPA/Hibernate store date in UTC time zone
How can I configure JPA/Hibernate to store a date/time in the database as UTC (GMT) time zone? Consider this annotated JPA entity:
public class Event {
@Id
public int id;
...
17
votes
10answers
27k views
Setting default values for columns in JPA
Is it possible to set a default value for columns in JPA, and if, how is it done using annotations?
17
votes
11answers
23k views
Detach an entity from JPA/EJB3 persistence context
What would be the easiest way to detach a specific JPA Entity Bean that was acquired through an EntityManager. Alternatively, could I have a query return detached objects in the first place so they ...
16
votes
3answers
2k views
I found JPA, or alike, don't encourage DAO pattern
I found JPA, or alike, don't encourage DAO pattern. I don't know, but I feel like that, especially with server managed JTA managers.
After adequate hands-on using DAO pattern, I started designing JPA ...
16
votes
3answers
9k views
Which anotation should I use: @IdClass or @EmbeddedId
The JPA (Java Persistence API) specification has 2 different ways to specify entity composite keys: @IdClass and @EmbeddedId.
I'm using both annotations on my mapped entities, but it turns out to be ...
15
votes
1answer
270 views
Write-Behind Cache for JPA
It would appear from searching around here and the web at large that it is not possible to implement EHCache as a write-behind cache for Hibernate, as that would require substantial changes to the ...
15
votes
1answer
8k views
JPQL IN clause: Java-Arrays (or Lists, Sets…)?
I would like to load all objects that have a textual tag set to any of a small but arbitrary number of values from our database. The logical way to go about this in SQL would be to build an "IN" ...
15
votes
2answers
3k views
ORM for Lift: Mapper or JPA?
I'm creating a small application for my company in Lift. I'm quite a newbie in Scala/Lift so I'm using this chance to practice. Now, I have a question on what ORM system to use.
On one hand, Mapper ...
14
votes
1answer
741 views
Polymorphic CriteriaQuery without inverse relationship
I have the following EJB structure. Don't wonder about Animal and Inventory, these classes are only here to demonstrate the structure in a simplified way (Update: I have revised the class names to ...
14
votes
5answers
4k views
DAO and Service layers (JPA/Hibernate + Spring)
I'm designing a new app based on JPA/Hibernate, Spring and Wicket. The distinction between the DAO and Service layers isn't that clear to me though. According to Wikipedia, DAO is
an object that ...
14
votes
9answers
36k views
No Persistence provider for EntityManager named
I have my persistence.xml with the same name, using toplink, under META-INF directory.
Then I have my code calling it with...
EntityManagerFactory emfdb = ...
14
votes
1answer
7k views
Cannot use identity column key generation with <union-subclass> ( TABLE_PER_CLASS )
com.something.SuperClass:
@Entity
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
public abstract class SuperClass implements Serializable {
private static final long serialVersionUID = ...
14
votes
1answer
7k views
JPA Multiple Embedded fields
Is it possible for a JPA entity class to contain two embedded (@Embedded) fields? An example would be:
@Entity
public class Person {
@Embedded
public Address home;
@Embedded
public ...
13
votes
3answers
733 views
Is it a good idea to “migrate business logic code into our domain model”?
I am reading Hibernate in Action and the author suggests to move business logic into our domain models (p. 306). For instance, in the example presented by the book, we have three entities named Item, ...
13
votes
8answers
903 views
Is there a good reason to configure hibernate with XML rather than via annotations?
I've been using Hibernate for a few years but have only used it with annotations, and by setting the connection parameters in my code.
Am I "missing something" by not using the XML files? Are there ...
12
votes
2answers
321 views
Mapping a read-only database with a many-to-many relation without a join table
I have a question similar to @ManyToMany without join table (legacy database) with an additional issue.
I have two tables A and B
A with a multiple column primary key (ID and ID2)
B with a multiple ...
12
votes
8answers
4k views
JPA: what is the proper pattern for iterating over large result sets?
Let's say I have a table with millions of rows. Using JPA, what's the proper way to iterate over a query against that table, such that I don't have all an in-memory List with millions of objects?
For ...
12
votes
3answers
6k views
Hibernate, cannot simultaneously fetch multiple bags
hibernate throw this excpetion during sessionfactory creations.
org.hibernate.loader.MultipleBagFetchException: cannot simultaneously fetch multiple bags
This is my test case:
@Entity
public ...
12
votes
2answers
7k views
In a bidirectional JPA OneToMany/ManyToOne association, what is meant by “the inverse side of the association”?
In these examples on TopLink JPA Annotation Reference:
Example 1-59 @OneToMany - Customer Class With Generics
@Entity
public class Customer implements Serializable {
...
...
12
votes
2answers
3k views
How should I secure my webapp written using Wicket, Spring, and JPA?
So, I have an web-based application that is using the Wicket 1.4 framework, and it uses Spring beans, the Java Persistence API (JPA), and the OpenSessionInView pattern. I'm hoping to find a security ...
12
votes
4answers
3k views
Should I use Spring or Guice for a Tomcat/Wicket/Hibernate project?
I'm building a new web application that uses Linux, Apache, Tomcat, Wicket, JPA/Hibernate, and MySQL. My primary need is Dependency Injection, which both Spring and Guice can do well. I think I need ...
12
votes
4answers
11k views
JPA-based JUnit Test Best Practices
This is a bit of an odd question, but it has been bothering me for a few months now. I have built a JPA-based web application using Wicket + Hibernate (built with Maven), and want to test the DAO ...
12
votes
4answers
6k views
Can javax.persistence.Query.getResultList() return null?
And if so, under what circumstances?
Javadoc and JPA spec says nothing.
12
votes
14answers
15k views
Hibernate Annotations - Which is better, field or property access?
This question is somewhat related to http://stackoverflow.com/questions/305880/hibernate-annotation-placement-question.
But I want to know which is better? Access via properties or access via fields?
...
11
votes
3answers
296 views
Hibernate cache for mappedBy object
I have code like:
@Entity
@Table(name = "A")
@Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
public class A
{
@OneToOne(cascade={CascadeType.ALL}, fetch=FetchType.EAGER, mappedBy="a")
...
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 ...
11
votes
3answers
1k views
A concise, clear list of what is new in JPA2?
Does anybody know of a good list of what is new in JPA 2? Not what is new with Hibernate/TopLink in the version that supports JPA 2 but what is new in the actual spec.
11
votes
4answers
14k views
Multiple database with Spring+Hibernate+JPA
I'm trying to configure Spring+Hibernate+JPA for work with two databases (MySQL and MSSQL)
my datasource-context.xml:
<?xml version="1.0" encoding="UTF-8"?>
<beans ...
11
votes
2answers
7k views
Java Persistence / JPA: @Column vs @Basic
What is the difference between @Column and @Basic annotations in JPA? Can they be used together? Should they be used together? Or does one of them suffice?
11
votes
5answers
17k views
JPA Hibernate One-to-One relationship
I have a one-to-one relationship but hibernatetool complains when generating the schema. Here's an example that shows the problem:
@Entity
public class Person {
@Id
public int id;
...
11
votes
3answers
8k views
JPA Implementations - Which one is the best to use?
I have made use of the following JPA implementations:
Hibernate,
Toplink,
OpenJPA
Each of them has their own strengths and weaknesses. I found Hibernate the most advanced of the three except that ...
11
votes
2answers
28k views
Hibernate: Automatically creating/updating the db tables based on entity classes
I have the following entity class (in Groovy):
import javax.persistence.Entity
import javax.persistence.Id
import javax.persistence.GeneratedValue
import javax.persistence.GenerationType
@Entity
...