This tag is for questions about the version 2.0 of the Java Persistence API.
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 ...
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 ...
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> ...
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 ...
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, ...
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 ...
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> ...
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
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 ...
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)
...
4
votes
3answers
571 views
How to query an M:N relationship with JPA2?
I have an an object (BlogPost) that contains an M:N collection of elements (Tags).
How to query for an object (BlogPost) where at least one it its Tags matches an element in a set of Tags (defined by ...
0
votes
2answers
1k views
How can I make a JPA application access different databases?
I'm writing a Java SE (desktop) application that has to access different databases all of which will have the same data model (same schema, tables, etc.). I want to reuse the JPA Entities that I ...
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 ...
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 ...
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 ...
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 ...
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 ...
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 ...
6
votes
6answers
14k views
Generate JPA 2 Entities from existing Database
How can I generate JPA2 compliant @Entity from existing Databases?.
I found this: Question
Still its not clear if JBoss will generate compliant JPA2 and also I would like to know if there is a ...
1
vote
2answers
3k views
Database table access via JPA Vs. EJB in a Web-Application
I am designing a web-application that access many database tables.
I am trying to figure out what is the preferred way to access those tables?
Is it via JPA or EJB?
Thanks,
Nathan
1
vote
1answer
4k views
How to create a composite primary key which contains a @ManyToOne attribute as an @EmbeddedId in JPA?
I'm asking and answering my own question, but i'm not assuming i have the best answer. If you have a better one, please post it!
Related questions:
How to set a backreference from an @EmbeddedId in ...
5
votes
1answer
6k views
JPA - Criteria API and EmbeddedId
I want to use criteria to make the following query. I have an Entity with EmbeddedId defined:
@Entity
@Table(name="TB_INTERFASES")
public class Interfase implements Serializable {
@EmbeddedId
...
1
vote
1answer
1k views
Does JPA 2.0 support SQL Server table variables?
I am using JPA 2.0 and SQL Server 2008 and I have determined that JPA doesn't like my stored procedures when I use a table variable.
For example, this sproc works:
declare @t table
(
id int ...
3
votes
2answers
3k views
How do you create an EntityManager when you are unsure of the unit name?
I'm in a situation where I need to determine the EntityManager's unit name at run time.
For example, I'd like to do something like this:
@PersistenceContext(unitName = findAppropriateJdbcName())
...
2
votes
1answer
356 views
How to use @Entity attribute when inheritance is across separate JARs?
I have two entities where one of them inherits the other one, so I have in jar1 the entity1 and I have a jar2 the entity2->inherits(entity1)
in jar1:
@Entity
public class Entity1 {...}
in jar2:
...
1
vote
1answer
7k views
select from two tables using JPQL
I'm using JPQL to retrieve data. I can get data using the statement
List persons = null;
persons = em.createQuery("select p.albumName from PhotoAlbum p , Roleuser r
where r = p.userId and r.userID = ...
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 ...
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.
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 ...
5
votes
4answers
23k views
JPA Criteria API - How to add JOIN clause (as general sentence as possible)
I am trying to construct queries dynamically, and my next target is add JOIN clauses (I don't know how can I use the API).
By now, for example, this code work for me :
...
Class baseClass;
...
...
1
vote
1answer
4k views
Row numbering with p:dataTable
I have this query:
SELECT @rownum:=@rownum+1 'no', m.title, m.author, REPLACE(SUBSTRING_INDEX(m.content, ' ', 20), '<br>', ' '), m.viewed, m.hashid FROM book m, (SELECT @rownum:=0) r WHERE ...
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;
...
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 ...
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 = ...
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
...
3
votes
2answers
6k views
JPA CriteriaBuilder - How to use “IN” comparison operator
Can you please help me how to convert the following codes to using "in" operator of criteria builder?
I need to filter by using list/array of usernames using "in".
I also tried to search using JPA ...
3
votes
1answer
5k views
Why session bean method throw EjbTransactionRolledbackException when RuntimeException was thrown
I am trying to persist the entity with constraint validation,
when invoke persist - there is constraint that thrown and the caller get EjbTransactionRolledbackException...
so I try to call the ...
3
votes
3answers
4k views
Is this possible: JPA/Hibernate query with list property in result?
In hibernate I want to run this JPQL / HQL query:
select new org.test.userDTO( u.id, u.name, u.securityRoles)
FROM User u
WHERE u.name = :name
userDTO class:
public class UserDTO {
private ...
2
votes
1answer
2k views
HIBERNATE - JPA2 - H2 - Querying @ElementCollections HashMap by key
I'm using hibernate-entitymanager 3.6.4.Final and h2 database 1.3.155
I'm using the H2Dialect.
I'm having trouble filtering records by elements in an @ElementCollection.
Here is my entity
@Entity
...
2
votes
2answers
492 views
JPA : applicationManaged EntityManager for Java SE to control transaction lifecycle programmatically
I'm having difficulties finding a good solution to support this feature where the UI can start and commit the transaction.
In my previous approaches in working with transactional applications, i ...
7
votes
4answers
4k 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
...
6
votes
3answers
3k views
JPA/Hibernate Static Metamodel Attributes not Populated — NullPointerException
I would like to use JPA2 Criteria API with metamodel objects, which seems to be pretty easy:
...
Root<JPAAlbum> albm = cq.from(JPAAlbum.class);
... albm.get(JPAAlbum_.theme) ... ;
but this ...
6
votes
3answers
4k 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 ...
5
votes
2answers
2k views
JPA @Version behaviour
im using JPA2 with Hibernate 3.6.x
I have made a simple testing on the @Version.
Let's say we have 2 entities,
Entity Team has a List of Player Entities, bidirectional relationship, lazy ...
4
votes
1answer
4k views
Hibernate triggering constraint violations using orphanRemoval
I'm having trouble with a JPA/Hibernate (3.5.3) setup, where I have an entity, an "Account" class, which has a list of child entities, "Contact" instances. I'm trying to be able to add/remove ...
3
votes
3answers
2k views
PostGIS and JPA 2.0
I like to map datatypes from PostGIS with JPA 2.0. I googled for solutions or examples, but all I can find is, that JPA does not support mapping of custom data types. Is it still in JPA 2.0? Has ...
2
votes
2answers
666 views
entity with relationships through GWT RPC problem
I am using JPA 2.0. (EclipseLink 2.0.2)
If an entity contains relations, for example:
@OneToMany(cascade = CascadeType.ALL, mappedBy = "userId")
private Collection<Blog> blogCollection;
I ...
2
votes
2answers
2k views
What's an appropriate DAO structure with jpa2/eclipselink?
I've JPA entities and need to perform logic with them. Until now a huge static database class did the job. It's ugly because every public interface method had an private equivalent that used the ...
1
vote
1answer
5k views
JPA2 Criteria queries on entity hierarchy
suppose i have the following entity domain:
@Entity
@Inheritance(strategy=InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name="TYPE")
public abstract class Entity1 {
//some attributes
}
@Entity
...
6
votes
4answers
2k 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: ...