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 ...
4
votes
1answer
3k views
Validation Error: Value is not valid
I have a problem with a p:selectOneMenu, no matter what I do I cannot get JSF to call the setter on the JPA entity. I have this working on several other class of the same type (ie, join table classes) ...
46
votes
8answers
21k 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
...
259
votes
6answers
142k 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)?
56
votes
8answers
69k 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 ...
30
votes
11answers
37k 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 ...
44
votes
5answers
13k 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 ...
34
votes
8answers
30k 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;
...
24
votes
17answers
30k 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?
...
58
votes
2answers
25k 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
3answers
4k 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 ...
26
votes
7answers
40k 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;
...
24
votes
6answers
34k views
Do I need <class> elements in persistence.xml?
I have very simple persistance.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="1.0"
xmlns="http://java.sun.com/xml/ns/persistence" ...
34
votes
10answers
78k 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 = ...
7
votes
2answers
18k views
JPA 2.0, Criteria API, Subqueries, In Expressions
I have tried to written a query statement with a subquery and a in expression for many times. But I have never succeed.
I always get the exception, " Syntax error near keyword 'IN' ", the query ...
10
votes
5answers
7k views
similarity and difference between jpa and hibernate
what is similarity and difference between jpa and hibernate.
67
votes
9answers
11k 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 (if not all) of them depend on Hibernate, but I'd ...
69
votes
4answers
35k views
Hibernate cannot simultaneously fetch multiple bags
Hibernate throws this exception during SessionFactory creation:
org.hibernate.loader.MultipleBagFetchException: cannot simultaneously fetch multiple bags
This is my test case:
Parent.java
...
35
votes
10answers
24k 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 ...
12
votes
3answers
8k views
How to mix inheritance strategies with JPA annotations and Hibernate?
According to the Hibernate Reference Documentation it should be possible to mix different inheritance mapping strategies when using Hibernate's XML-Metadata:
...
6
votes
3answers
14k views
Hibernate ID Generator
Anyone know of some good tutorials on how to create a custom ID generator for hibernate?
6
votes
3answers
13k views
JPA 2.0 @OrderColumn annotation in Hibernate 3.5
I'm trynig to use @OrderColumn annotation with Hibernate 3.5
@OneToMany(mappedBy = "parent",fetch=FetchType.EAGER, cascade=CascadeType.ALL)
@OrderColumn(name = "pos")
private List<Children> ...
5
votes
2answers
1k views
Design question regarding Java EE entity with multiple language support
I'm working on a Java EE6 project using JPA/EJB/JSF and I'm having some trouble designing multiple language support for entities. There are three relevant entities:
Language (has id)
Competence (has ...
118
votes
11answers
80k 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 ...
49
votes
2answers
25k 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 {
...
...
28
votes
5answers
40k views
Difference between FetchType LAZY and EAGER in Java persistence?
Hi
I am a newbie to Java persistence and Hibernate.
What is the difference between FetchType LAZY and EAGER in Java persistence?
Thanks
16
votes
4answers
32k views
ConcurrentModificationException and a HashMap
I am persisting objects using JPA. The Main object has an owning One-Many relationship with another object. The other object is stored in a HashMap. What sort of synchronization would fix this ...
22
votes
8answers
31k views
“detached entity passed to persist error” with JPA/EJB code
I am trying to run this basic JPA/EJB code:
public static void main(String[] args){
UserBean user = new UserBean();
user.setId(1);
user.setUserName("name1");
...
22
votes
6answers
17k views
How to generate JPA 2.0 metamodel?
In the spirit of type safety associated with the CriteriaQuery JPA 2.0 also has an API to support Metamodel representation of entities. Is anyone aware of a fully functional implementation of this API ...
11
votes
2answers
13k views
Mapping many-to-many association table with extra column(s)
My database contains 3 tables:
User and Service entities have many-to-many relationship and are joined with the SERVICE_USER table as follows:
USERS - SERVICE_USER - SERVICES
SERVICE_USER table ...
18
votes
6answers
9k views
When and why JPA entities should implement Serializable interface?
The question is in the title. Below I just described some of my thoughts and findings.
When I had very simple domain model (3 tables without any relations) all my entities did NOT implement ...
11
votes
4answers
5k views
Should I write equals() methods in JPA entities?
I want to check if entity is in a Collection member (@OneToMany or @ManyToMany) of another entity:
if (entity2.getEntities1().contains(entity1)) { }
22
votes
8answers
39k views
Calling stored procedure from Java / JPA
I am writing a simple web application to call a stored procedure and retrieve some data.
Its a very simple application, which interacts with client's database. We pass employee id and company id and ...
17
votes
1answer
14k views
Calculated property with JPA / Hibernate
My Java bean has a childCount property. This property is not mapped to a database column. Instead, it should be calculated by the database with a COUNT() function operating on the join of my Java bean ...
31
votes
4answers
11k 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 ...
17
votes
3answers
16k views
Batch inserts with JPA/EJB3
Does JPA/EJB3 framework provide standard way to do batch insert operation...?
We use hibernate for persistence framework, So I can fall back to Hibernate Session and use combination ...
2
votes
2answers
474 views
redundant data in update statement
Hibernate generates UPDATE statements, which include all columns, regardless of whether I'm changing the value in that columns, eg:
tx.begin();
Item i = em.find(Item.class, 12345);
i.setA("a-value");
...
3
votes
4answers
5k views
@Id @GeneratedValue but set own ID value
I have a table with a generated id, but in some cases I would like to set it on my own. Can I, somehow, force Hibernate to ignore the @GeneratedValue?
47
votes
12answers
62k 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?
56
votes
12answers
17k 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 ...
11
votes
4answers
17k views
Single DAO & generic CRUD methods (JPA/Hibernate + Spring)
Following my previous question, DAO and Service layers (JPA/Hibernate + Spring), I decided to use just a single DAO for my data layer (at least at the beginning) in an application using JPA/Hibernate, ...
42
votes
6answers
59k 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 ...
19
votes
2answers
12k views
JPA: How to have one-to-many relation of the same Entity type
There's an Entity Class "A". Class A might have children of the same type "A". Also "A" should hold it's parent if it is a child.
Is this possible? If so how should I map the relations in the ...
26
votes
7answers
22k views
How to view the SQL queries issued by JPA?
When my code issues a call like this:
entityManager.find(Customer.class, customerID);
How can I see the SQL query for this call? Assuming I don't have access to database server to profile/monitor ...
8
votes
2answers
4k views
Lazy/Eager loading strategies in remoting cases (JPA)
I'm running into LazyLoading exceptions like the most people who try remoting with an ORM.
In most cases switching to eager fetching solves the problem (Lazy Loading / Non atomic queries / Thread ...
25
votes
8answers
50k views
How to use enums with JPA
I have an existing database of a film rental system. Each film has a has a rating attribute. In SQL they used a constraint to limit the allowed values of this attribute.
CONSTRAINT film_rating_check ...
14
votes
2answers
9k views
JPA cascade persist and references to detached entities throws PersistentObjectException. Why?
I have an entity Foo that references an entity Bar:
@Entity
public class Foo {
@OneToOne(cascade = {PERSIST, MERGE, REFRESH}, fetch = EAGER)
public Bar getBar() {
return bar;
}
}
...
18
votes
7answers
31k views
How to solve lazy initialization exception using JPA and Hibernate as provider
I am working on a project for a customer who wants to use lazy initialization.
They always get "lazy initialization exception" when mapping classes with the default lazy loading mode.
@JoinTable(name ...
13
votes
4answers
18k 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 ...
12
votes
6answers
10k views
In Spring with jpa/hibernate, how do I keep a session open to avoid lazy initialization exceptions?
I currently mark collections in entity beans as eager to avoid getting a lazy initialization exception when I try to access the collection properties after loading the bean with the EntityManager.
If ...
9
votes
2answers
5k 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, ...