This tag is for questions about the version 2.0 of the Java Persistence API.

learn more… | top users | synonyms (3)

110
votes
23answers
13k views

Weaknesses of Hibernate

I would like to know which are the weak points of Hibernate 3. This is not pretended to be a thread against Hibernate. I think it will be a very useful knowledge for decide if Hibernate is the best ...
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 ...
26
votes
5answers
23k views

In JPA 2, using a CriteriaQuery, how to count results

I am rather new to JPA 2 and it's CriteriaBuilder / CriteriaQuery API: CriteriaQuery javadoc CriteriaQuery in the Java EE 6 tutorial I would like to count the results of a CriteriaQuery without ...
25
votes
4answers
20k views

What's the difference between JPA and Hibernate?

I understand that JPA 2 is a specification and Hibernate is a tool for ORM. Also, I understand that Hibernate has more features than JPA 2. But from a practical point of view, what really is the ...
25
votes
3answers
19k views

JPA Criteria Tutorial

I've been trying to find a JPA Criteria API tutorial but haven't been much successful. Do you know about any for beginners? I'd like to start using it in an Java5/Maven app to build complex search ...
22
votes
6answers
18k 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 ...
21
votes
1answer
9k views

Storing a Map<String,String> using JPA

I am wondering if it is possible using annotations to persist the attributes map in the following class using JPA2 public class Example { long id; // .... Map<String, String> ...
21
votes
1answer
12k views

Confusion: @NotNull vs @Column(nullable = false)

When they appear on a field/getter of an @Entity, what is the difference between them? (I persist the Entity through Hibernate). What framework and/or specification each one of them belongs to? ...
20
votes
3answers
2k 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.
19
votes
5answers
5k views

Which Java Type do you use for JPA collections and why?

Which of the following collection types do you use in your JPA domain model and why: java.util.Collection java.util.List java.util.Set I was wondering whether there are some ground rules for this. ...
19
votes
1answer
12k views

How to use JPA2's @Cacheable instead of Hibernate's @Cache

Typically , I use Hibernate's @Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE) to cache an @Entity class , and it works well. In JPA2 , there's another @Cacheable annotation that seems ...
17
votes
4answers
16k views

JPA 2.0 orphanRemoval=true VS on delete Cascade

I am a little confused about the JPA 2.0 orphanRemoval attribute. I think I can see its is needed when I use my JPA provider's DB generation tools to create the underlying database DDL to have an ON ...
15
votes
1answer
10k views

Hibernate - @ElementCollection - Strange delete/insert behavior

@Entity public class Person { @ElementCollection @CollectionTable(name = "PERSON_LOCATIONS", joinColumns = @JoinColumn(name = "PERSON_ID")) private List<Location> locations; ...
14
votes
1answer
6k views

Java EE Architecture - Are DAO's still recommended when using an ORM like JPA 2?

If I'm using an ORM like JPA2 - where I have my entities that are mapped to my database, should I still be using a DAO? It seems like a lot more overhead. For example, I would need to maintain three ...
13
votes
2answers
3k views

JPA: When to choose Multivalued Association vs. Element Collection Mapping

I would like to better understand the differences between (1) a traditional Multivalued Relationship/Association @Entity -> @OneToMany -> @Entity and (2) the JPA2 Collection of ...
13
votes
4answers
2k views

How to implement a temporal table using JPA?

I would like to know how to implement temporal tables in JPA 2 with EclipseLink. By temporal I mean tables who define validity period. One problem that I'm facing is that referencing tables can no ...
12
votes
1answer
6k 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 ...
12
votes
3answers
12k views

JPA Hibernate many-to-many cascading

I am using JPA 2.0 and hibernate. I have a User class and a Group class as follows: public class User implements Serializable { @Id @Column(name="USER_ID") private String userId; ...
11
votes
2answers
9k views

How do I properly cascade save a one-to-one, bidirectional relationship on primary key in Hibernate 3.6

I have an one-to-one, bidirectional entity relationship with shared keys. When I attempt to save the owner of the association I get a "null id generated" exception against the owned side of the ...
11
votes
3answers
6k views

JPA 2.0 API maven artifact

I am using JPA 2.0 and my persistence provider is Hibernate; however, I'd like to just include a standard API from javax, but in central, there is no 2.0 artifact. I am currently using the Hibernate ...
11
votes
3answers
3k views

JPA 2.0: Adding entity classes to PersistenceUnit *from different jar* automatically

I have a maven-built CDI-based Java SE app, which has a core module, and other modules. Core has the persistence.xml and some entities. Modules have additional entities. How can I add the entities to ...
11
votes
3answers
1k views

separating JPA entities from Hibernate-specific tweaks

I have the following "root" entity (hibernate-specific parts commented out): @Entity //@GenericGenerator(name="system-uuid",strategy="org.hibernate.id.UUIDGenerator") public class Node extends ...
10
votes
1answer
10k views

JPA/Criteria API - Like & equal problem

I'm trying to use Criteria API in my new project: public List<Employee> findEmps(String name) { CriteriaBuilder cb = em.getCriteriaBuilder(); CriteriaQuery<Employee> c = ...
10
votes
1answer
494 views

JPA2 Criteria API .as(String.class) casting to char(1) - How do I work around this?

Using the criteria api, I have a query which does something like: CriteriaBuilder cb = entityManager.getCriteriaBuilder(); CriteriaQuery<SourcePath> pathQuery = ...
9
votes
2answers
9k views

Hibernate JPA, MySQL and TinyInt(1) for Boolean instead of bit or char

Here is my JPA2 / Hibernate definition: Code: @Column(nullable = false) private boolean enabled; In MySql this column is resolved to a bit(1) datatype - which does not work for me. For legacy ...
9
votes
3answers
13k views

Can't get JPA2 running with Hibernate and Maven

Have been trying the whole day long and googled the ** out of the web ... in vain. You are my last hope: Here's my code: The Entity: package sas.test.model; import javax.persistence.Entity; import ...
9
votes
2answers
4k views

What is the difference between @Inject and @EJB

I'm currently learning the new Java EE 6 component models and am confused with the latest dependency injection mechanism. So here are my questions: 1) What is the difference between @Inject and @EJB ...
9
votes
3answers
5k views

What are some of the real world example where JPA2 Criteria API is more preferable?

I have taken a look at JPA 2.0 Criteria API, but I found it to be too cumbersome unlike Hibernate Criteria. Is there any good reason to use JPA 2.0 Criteria API rather than using JPA-QL? Thanks for ...
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, ...
9
votes
3answers
4k views

Programmatically loading Entity classes with JPA 2.0?

With Hibernate you can load your Entity classes as: sessionFactory = new AnnotationConfiguration() .addPackage("test.animals") .addAnnotatedClass(Flight.class) ...
9
votes
1answer
4k views

Multiple persistence-unit tags in one persistence.xml

I'm working now with a JPA 2.0 project (in Eclipse Indigo). In my persistence.xml file I need to specify two <persistence-unit> tags, because I have two different database to work with. Doing this, ...
9
votes
1answer
4k views

What to use: JPQL or Criteria API?

My Java application is using JPA for object persistence. The business domain is very simple (just three classes are persistent, with 3-5 properties in each). Queries are simple as well. The question ...
9
votes
2answers
7k views

JPA: unidirectional many-to-one and cascading delete

Say I have a unidirectional @ManyToOne relationship like the following: @Entity public class Parent implements Serializable { @Id @GeneratedValue private long id; } @Entity public class ...
8
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 ...
8
votes
1answer
13k views

Using HSQL in-memory database as JPA datasource

I have an in-memory data source: java.sql.Connection c = DriverManager.getConnection("jdbc:hsqldb:mem:testdb", "sa", ""); emf = Persistence.createEntityManagerFactory("manager"); But ...
8
votes
1answer
14k views

How to get Hibernate + javax.persistence via Maven2 pom.xml

I am a newbie with Maven2 and I write a pom.xml. Now I want to get Hibernate and javax.persistence to resolve this: import javax.persistence.Entity; ... import org.hibernate.annotations.Fetch; ... ...
8
votes
1answer
1k views

JPA: Extending the persistence context vs. detaching entities

There appear to be two patterns to implement business transactions that span several http requests with JPA: entity-manager-per-request with detached entities extended persistence context What ...
8
votes
4answers
2k views

JPA Nested Transactions And Locking

Consider the scenario two methods exists in different stateless bean public class Bean_A { Bean_B beanB; // Injected or whatever public void methodA() { Entity e1 = // get from db ...
8
votes
3answers
8k views

JPA 2 Criteria Fetch Path Navigation

With JPA 2 Criteria Join method I can do the following: //Join Example (default inner join) int age = 25; CriteriaBuilder cb = entityManager.getCriteriaBuilder(); ...
8
votes
2answers
7k views

Dynamic JPA 2.0 query using Criteria API

I am a bit stucked constructing a dynamic query using the CriteriaBuilder of JPA 2.0. I have quite a common use case I guess: User supplies a arbitrary amount of search parameters X to be and / or ...
8
votes
1answer
4k views

How to implement polymorphic JPA entities with generic relations

I'm trying to use JPA 2.0 to create polymorphic entities with generic relations. There should be two tables, an event table and a notification table. Inside those table are concrete entities that are ...
8
votes
2answers
2k views

How can I validate two or more fields in combination?

I'm using JPA 2.0/Hibernate validation to validate my models. I now have a situation where the combination of two fields has to be validated: public class MyModel { public Integer getValue1() { ...
8
votes
2answers
6k views

JPA 2.0 Implementations comparison : Hibernate 3.5 vs EclipseLink 2 vs OpenJPA 2

What's your choice? Do You have any suggestions and experience? I'm developing an application with Hibernate 3.5 and Spring 3.0 Pros: Good documentation Easy configuration and helpful logs ...
8
votes
3answers
3k views

Complex Search Queries JPA

In my Wicket+JPA/Hibernate+Spring project, much of the functionality is based around the Inbox page where, using many filtering options (not all of them have to be used), users can restrict the set of ...
8
votes
3answers
5k views

Exception in GWT Dev Mode + Spring 3.1 + Hibernate 4.0.1

I have a GWT+Hibernate+JPA+Spring configuration file which is OK with Spring 3.0.x + Hibernate 3.6.x. When I upgraded to Spring 3.1 and Hibernate 4.0, the following exception is thrown: Is there any ...
7
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> ...
7
votes
1answer
8k views

How to properly express JPQL “join fetch” with “where” clause as JPA 2 CriteriaQuery?

Consider the following JPQL query: SELECT foo FROM Foo foo INNER JOIN FETCH foo.bar bar WHERE bar.baz = :baz I'm trying to translate this into a Critieria query. This is as far as I have gotten: ...
7
votes
1answer
3k views

How to do bulk delete in JPA when using Element Collections?

I am having trouble working out how to do a bulk delete of a Person object using JPA, when the Person objects contain data stored using an @ElementCollection. Any ideas on how to do this would be much ...
7
votes
1answer
3k views

Recursive JPA query?

Does JPA 2 have any mechanism for running recursive queries? Here's my situation: I have an entity E, which contains an integer field x. It also may have children of type E, mapped via @OneToMany. ...
7
votes
1answer
533 views

Defining multiple Address properties in Person per AddressType by a triple join table

I've here a database with a PERSON - ADDRESS - ADDRESS_TYPE relationship maintained by a triple join table PERSON_ADDRESS. The PERSON-ADDRESS relationship is effectively one-to-many. PERSON ID ...

1 2 3 4 5 37