Tagged Questions
This tag is for questions about the version 2.0 of the Java Persistence API.
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 ...
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.
9
votes
1answer
4k 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 ...
9
votes
3answers
6k 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 ...
8
votes
2answers
2k 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 ...
7
votes
1answer
730 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 ...
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
3answers
1k 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 ...
7
votes
1answer
1k 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 ...
7
votes
1answer
2k 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> ...
7
votes
3answers
8k 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 ...
6
votes
2answers
192 views
JPA Mixed Inheritance Strategy
I have 3 entities:
@Entity
public abstract class A {
@Id
public Long id;
public String a1;
public String a2;
public String a3;
//much more fields
//getters and setters
}
@Entity
...
6
votes
0answers
198 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 = ...
6
votes
2answers
310 views
Sample persistence.xml for a production instance using jpa2 and hibernate 3.6.x
<property name="hibernate.generate_statistics" value="true"/>
In a production scenario, it would make sense to switch the above flag to false. What other flags should be modified so that ...
6
votes
2answers
399 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
...
6
votes
1answer
654 views
When should I use @Basic(optional = false) in JPA 2.0
I have a Inheritance with Single Table mapping in JPA, Say Class A and B extends some abstract entity, so I have to make columns from A & B nullable at DB end but if someone is trying to persist A ...
6
votes
1answer
460 views
JPA2 critera query in-expression on FK issues n select statements, where n is #values
I have the same issue using hibernate against DB2 and MySQL.
Here is a test:
EntityManager em = emf.createEntityManager();
CriteriaBuilder cb = em.getCriteriaBuilder();
...
6
votes
1answer
522 views
JPA 2.0 Provider Hibernate
I have very strange problem we are using jpa 2.0 with hibernate annotations based
Database generated through JPA DDL is true and MySQL as Database;
i will provide some reference classes and then my ...
6
votes
1answer
292 views
Two EAR files, same JPA entitymanager, same transaction => same session?
Lets say I have two applications, each with an individual EAR file, which call each other within the same JTA Transaction. If both share the same entitymanager, do they get the same session or is it ...
6
votes
2answers
1k views
JPA 2.0: count for arbitrary CriteriaQuery?
I am trying to implement the following convenience method:
/**
* Counts the number of results of a search.
* @param criteria The criteria for the query.
* @return The number of results of the ...
6
votes
3answers
3k 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 ...
6
votes
1answer
6k 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;
...
...
6
votes
1answer
2k 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 ...
6
votes
2answers
1k 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 ...
6
votes
4answers
2k views
JPA 2.0 metamodel in Netbeans?
I've read that since version 6.9, Netbeans includes annotation processing support, a feature needed, for instance, to generate JPA 2.0 entities' metamodels.
However, I couldn't find any examples or ...
6
votes
3answers
328 views
Is it illegitimate to name an JPA entity “Group”?
I'm developing a JEE6-application, using JPA 2.0 and Hibernate 3.5.2-Final as the Provider (and MySQL 5.1.41). My Application Server is Glassfish V3.0.1.
I already have a working CRUD-app with some ...
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
4answers
358 views
Is there a way to reduce the amount of boiler-plate code associated with a CriteriaQuery (in JPA 2.0)?
I love the type safety CriteriaQuery brings ing JPA 2.0 but it also brings a bit of boiler-plate code. For example, let say I have an entity called NamedEntity, which simply has an id and a String ...
6
votes
2answers
5k 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> ...
6
votes
3answers
7k views
Hibernate 3.5-Final in JBoss 5.1.0.GA
Hibernate 3.5-Final is finally here and it offers the much anticipated JPA2 support, amongst other features. I am working on a project(EJB3 based) using JBoss 5.1.0.GA and Hibernate 3.3, but I wanted ...
6
votes
2answers
5k 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 ...
5
votes
2answers
166 views
Do I need DataSource in JPA Hibernate project?
I am preparing some application with usage of JPA 2.0, Hibernate as provider, MySQL 5 as database, which will be deployed on JBoss AS 7.0.2.I have already configured some basics in persistence.xml ...
5
votes
3answers
180 views
Why is INSERT made after em.persist in FlushModeType.COMMIT?
I have set FlushModeType to COMMIT, but right after em.persist() call, the INSERT is made to database. I expect Hibernate to write changes to database only at the end of transaction, but it seems to ...
5
votes
1answer
501 views
Can .hbm files be used in a JPA application with Hibernate as JPA provider?
I'd like to replace custom BPM implementation with Activiti or jBPM-5 in a product which uses Hibernate (No JPA) with Spring for persistent layer implementation. Unfortunately, both Activiti and jBPM5 ...
5
votes
2answers
691 views
ElementCollection createAlias in hibernate API
does anyone know if and how the solution for following question (which is written in the JPA API) can be written using the hibernate criteria API?
To be more specific I have a Discussion entity that ...
5
votes
5answers
1k 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.
...
5
votes
1answer
3k 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();
...
5
votes
3answers
4k 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 ...
5
votes
4answers
2k views
Constraint violation in Hibernate unidirectional OneToMany mapping with JoinTable and OrderColumn when removing elements
I have a problem when removing elements from a list mapped as described above. Here is the mapping:
@Entity
@Table( name = "foo")
class Foo {
private List bars;
@OneToMany
...
5
votes
1answer
2k 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 ...
5
votes
3answers
1k views
Upgrade Glassfish v2 to JPA 2.0?
I'm trying to use Hibernate 3.5.5 with Spring HibernateJpaVendorAdapter on Glassfish V2 but I'm getting the following exception when the Spring context is initialised:
java.lang.NoSuchMethodError: ...
5
votes
1answer
457 views
Some basic JPA+Hibernate Questions?
I have some basic questions:
1) How many xml files involved in JPA+Hibernate combination, if JPA annotations were used? i am having just persistence.xml.
2) Is hibernate.cfg.xml needed, if i use JPA ...
5
votes
2answers
515 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() {
...
5
votes
3answers
6k 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 ...
5
votes
3answers
6k views
Creating queries using Criteria API (JPA 2.0)
I'm trying to create a query with the Criteria API from JPA 2.0, but I can't make it work.
The problem is with the "between" conditional method. I read some documentation to know how I have to do it, ...
5
votes
3answers
818 views
How to persist an entity which contains a field of user type using JPA2
I'm looking for a way to persist an entity which contains a field of a user type.
In this particular example I would like to persist the ts field as number of milliseconds.
import ...
4
votes
3answers
160 views
Why is a Hibernate JPQL Type Cast necessary for String
I am using the Play! Framework for a small application. In a Model I have the following Query:
public static ApplicationUser getByUserName(String userName) {
return ApplicationUser.find("SELECT u ...
4
votes
1answer
95 views
JPA - only first commit failed, but should failed all
please can somebody help me to explain the following (for me) very strange JPA behaviour. I intentionally change primary key of entity which is prohibed in JPA.
So first commit correctly throws ...
4
votes
1answer
124 views
Add logic to a column as your querying using criteria api
I'm not even sure this is possible but I figured it's worth asking. I've been using native query's for this for a long time.
Say I have this query.
public static List<PkgLoad> ...
4
votes
2answers
221 views
JPA. How do I subclass existing entity and keep it's ID?
Assume I have two classic non-abstract JPA classes: Person and Student.
@Entity
@Inheritance(strategy = InheritanceType.JOINED)
public class Person {
@Id
@GeneratedValue(strategy = ...