This tag is for questions related to the Java Persistence Criteria API (from JPA 2.0) which is used to define queries through the construction of object-based query definition objects, rather than use of the string-based approach of the Java Persistence query language. For questions related to ...
0
votes
0answers
24 views
How to best implement 'Filtering' on multiple fields from 4 tables using JPA criteria queries?
I am using JPA for my project to query database and all entities are mapped according to DB design via annotations. DB is postgreSQL.
First let me explain the table structure in brief:
Table_A
Aid
...
0
votes
0answers
20 views
JPA CriteriaBuilder: Predicate with a Serializable field throws an exception
I have an entity with a persistent field declared as Serializable.
I would like to build a query with the CriteriaBuilder, that filters the results by the Serializable field.
The database is Oracle, ...
1
vote
0answers
50 views
JPA(2.0) Criteria Simple Join
I am having problem creating criteriaQuery for the following sql.
Any help would be appreciated.Lets say I have two tables Member and Person.
I am joining on name and age and having where clause for ...
1
vote
0answers
40 views
JPA / Hibernate Query on polymorphic field
Given the following type hierachy:
@Entity
@Inheritance(strategy=InheritanceType.TABLE_PER_CLASS)
class A { }
@Entity
class B extends A {
String b;
}
@Entity
class C extends A {
String c;
}
...
0
votes
1answer
25 views
Hibernate criteria for compare SUM of three columns againts another column
I have a table with columns as ID, col1, col2, col3, col4, col5. I want to add a hibernate criteria restriction as (col1 + col2 + col3) < col4
All these columns contains integer values. How could ...
0
votes
2answers
44 views
Build a search query with a search criteria in another table using JPA criteria
I need to search states from StateTable based on a given country name (not countryId) in the Country table which should match the like SQL operator using JPA criteria API (countryId is the foreign key ...
1
vote
1answer
54 views
CriteriaBuilder join / subquery with resulting Integer
I'm trying to create a query using CriteriaBuilder to select all Product with a stock greater than zero. Stock is sum(DeliveryRow.amount) - sum(DispatchRow.amount). Both ofcourse only containing the ...
0
votes
0answers
43 views
Generic JPA findAll without metamodel
I'm trying to implement a Primefaces lazy data model following this post http://hrycan.com/2012/03/28/primefaces-lazy-loading-datatable-for-jsf2/.
The basics is done, but I'm stuck at the filter ...
0
votes
1answer
49 views
java.lang.NullPointerException at org.hibernate.ejb.criteria.predicate.ComparisonPredicate.render
I have just added a predicate condition to my code, its resolving the column fine but not sure why its thowing error:
ERROR com.sl.web.controller.AbstractController logError- Exception occur in ...
0
votes
1answer
45 views
How can I add a criteria to a grails criteria to limit results based on a filtered association?
In my old java code I could do this to "join" another table in a hibernate query and filter results based on it.
final Criteria brokerageCriteria = userCriteria.createCriteria("brokerage");
...
1
vote
0answers
39 views
JPQL / Criteria API Order By MAX OneToMany association
I have the following data model: Customer with OneToMany relationship to Order.
@Entity
public class Customer{
...
private Long id;
@OneToMany
private Collection<Order> ...
0
votes
0answers
64 views
Criteria builder grouping null and empty strings together
I want to create sql query with criteria builder when I will group by some text field. The case is I want to group by fields with null values and empty strings together (I know that there is a ...
3
votes
1answer
89 views
Spring JPA: Query builder versus Criteria Builder , which one to use?
I am going to start new project that would play with very large database, thus would be having lots of database operation.
I have decided to use Spring JPA as my ORM. Now Spring JPA provides various ...
0
votes
1answer
67 views
JPA Query with openJPA only works as 'native' SQL, but it does not when transformed as JPQL or with JPA Criteria
I have a SQL query and the mapping of the classes. Using openJPA, if the query is made as a @NamedNativeQuery it works fine, returning the correspondent class and the expected result. If it is ...
0
votes
0answers
56 views
Hibernate criteria API: only one result
I have some problems with the Hibernate criteria API. I want to get rows of a table as objects, but limit the amount of returned results. Here is the code:
Criteria c = ...
0
votes
3answers
52 views
JOIN 3 Entities in JPA
This is the first time I develop an Java application and immediately face an issue. Now I have a SQL query as below:
Select PD.* From product PD
join Stock SP on PD.id = SP.product_id
join storage SR ...
0
votes
0answers
66 views
JPA 2 Criteria API Order by grouping function of OneToMany association
I have the following entity relationship:
@Entity
public class TableA{
private int aid;
private Collection<TableB> bs;
...
}
@Entity
public class TableB{
private int bid;
private ...
0
votes
0answers
65 views
JPA2 unable to get the desired sql
I'm trying to achieve the equivalent inline sql with Criteria APi.
select distinct t1
from tbl_ticket t1
left join tbl_tickets_updates t2 on t1.ticketnr = t2.ticketnr
where (t1.description ilike ...
0
votes
2answers
51 views
JPA query compare lists
Let's say I have an entity like this:
public class Class1 {
private long id;
...
private List<OneRandomObject> list;
}
is it possible in JPA with criteria query or named query to compare ...
0
votes
0answers
30 views
Query entity class with multiple joins using criteria api
How to select the rows in this table using the docid column value and retrieve the values in the appointment table as well as some values in the patient table. The query should be in criteria API.
The ...
0
votes
1answer
169 views
hibernate criteria: select object from one table using another one
First of all sorry if my question is't very well formulated.
I have simple object which is mapped to corresponding table:
@Entity
@Table(name = "USERS")
public class User{
@Id
@Column(name ...
0
votes
2answers
52 views
Hibernate's Criteria query makes Tomcat become not responive after a few request services
I am running a Spring + Hibernate web application on Tomcat 7.0.35 (Spring 3.1, Hibernate 3.6.1, JPA 2.0).
This app has a page that gets data from the database via Hibernate's Criteria (I know I dont ...
0
votes
1answer
195 views
How to make a CriteriaBuilder join with a custom “on” condition?
I want make a query where I join 2 tables, using the CriteriaBuilder. In MySQL the query I'm trying to make would look like this:
SELECT * FROM order
LEFT JOIN item
ON order.id = item.order_id
AND ...
1
vote
0answers
52 views
Order by a temporary column computed using case when
I have 2 entities Book and BookProperty in a one-to-many relationship. I need to retrieve books sorted by upload_date, english language books coming first using JPA Criteria with pagination and stuff ...
0
votes
1answer
52 views
JPA2 Criteria: How to avoid a cross join using path.get()
If you have this entity:
@Entity
public class A {
@ManyToOne
@JoinColumn(name = "bField", nullable = true)
private B myBObject;
}
And I have a generic generator of Criteria who will ...
1
vote
1answer
91 views
Using Criteria API or java.util.List contains() method?
Lets assume the following situation: I have two entity classes Person and Comment.
//Person class
@Entity
public class Person extends AbstractBusinesObject{
@OneToMany(mappedby ="owner")
private ...
0
votes
0answers
69 views
Building multiselect clause dynamically in criteria api?
I am trying to build the where clause of a criteria API query based on certain if and else conditions holding true. For this I am using selection lists.
I add elements to the list based on the if ...
0
votes
0answers
21 views
criteria to search map association with **key is entity and value is embeddable**
I search name of map key--Position ( Position is entity ) like this (hibernate 3.3 )
list = s.createCriteria(Ad.class, "ad").createAlias("ad.positionInfos", "pf")
...
0
votes
1answer
34 views
How to get an interesect query using CritieraQuery?
Given
@Entity
public class Document {
@Id
@Column(name = "DOCUMENT_ID")
private Long id;
@ElementCollection
@CollectionTable(
name="TAG",
...
0
votes
1answer
94 views
JPA subquery generates ID twices in SQL query
I have a problem doing a composite select using JPA CriteriaQuery .
I have three tables X->Y->Z , for every X I have one or more Y and for every Y I have one or more Z. I have an X object and I am ...
0
votes
1answer
81 views
Group Criteria API query's results by the day part of a date
In Criteria API i have to group the results of a query based on the day part of a date column returned in the query. Can you please suggest how to do this?
The following is the multiselect query
...
0
votes
1answer
82 views
Aggregate (sum,max,avg) function in Critera API JPA
In my criteria API query the following query where I query for three columns of my table works.
cq.multiselect(root.get("point").get("id"), root.get("player").get("userid"), root.get("amount"));
but ...
1
vote
0answers
53 views
How to use substring in criteriaQuery api (jpa 2.0)
I'm trying to do a substring query using jpa 2.0 but I dont know how to do this.
Until now I have this code:
time = builder.between(
...
1
vote
1answer
59 views
JPA find entities where date is between start and end date that can be null using Criteria
CriteriaBuilder builder = em.getCriteriaBuilder();
CriteriaQuery cQuery = builder.createQuery();
Root<AcsTemplateDateJPA> root = cQuery.from(AcsTemplateDateJPA.class);
...
1
vote
1answer
30 views
joining @ManyToOne's @OneToMany
Each Account has a Origin via @ManyToOne
Each Origins has Shadows via @OneToMany
With given Root<Account>, How can I join those Shadows so that I can put some conditions for them on where?
...
0
votes
1answer
121 views
Conflict in the results between Hibernate Criteria API and Hibernate Query Language
I am new to Hibernate criteria, the relation between Tutor and Student is OneToMany (i.e. one Tutor has many Student), I tried following hibernate query to retrieve all students whose tutor name is ...
1
vote
1answer
60 views
JPA query filter on concatenated fields
I want to query my "customers" table using "name + surname" string as a key.
Name and surname are stored in different fields.
So my query would be:
SELECT
*
FROM
customers
WHERE
...
3
votes
1answer
135 views
JPA 2 Criteria query property of superclass
I have two Entities:
@Entity
@Inheritance(strategy = InheritanceType.JOINED)
public class Person implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator = ...
0
votes
0answers
81 views
Multiselect with JPA
I have tables look like this
SERVICE
---------------------------------------
ID BIGINT PK
CURRENCY
------------------------------------------
ID BIGINT ...
0
votes
1answer
69 views
Criteria API correlate
I have been Googling but do not understand what the consequence of calling the method correlate of javax.persistence.criteria.Subquery en the Criteria API.
...
5
votes
1answer
101 views
How does one construct multi-column “WHERE … IN” expressions using JPA's criteria API?
For an Entity with a multi-column ID, we need to persist all those objects in a given List that aren't already present in the DB. Since the number of objects to check is large, and the number of ...
1
vote
1answer
74 views
How do I make use of the Criteria API to find a specific person based on different criterias?
I love all the help I've gotten in the past simply by reading your topics, however I've now stumbled onto something I literally have no idea how to implement at all.
Edit: Forgot a big portion -> My ...
0
votes
2answers
691 views
JPQL equivalent of SQL query using unions and selecting constants
I've written a SQL query that basically selects from a number of tables to determine which ones have rows that were created since a particular date. My SQL looks something like this:
SELECT ...
0
votes
1answer
94 views
Hibernate JPA - How to obtain Path to property of class mapped on single column?
I'm using JPA. I have java entity class with specyfic property - class that is mapped on single column:
@Entity
MyClass{
@Column(length = 6, nullable = true)
@Type(type = ...
3
votes
1answer
186 views
Does Hibernate Criteria Api completely protect from SQL Injection
I am working with Hibernate to protect my website from SQL Injection.
I heard that Hibernate Criteria API is more powerful than HQL.
Does Hibernate Criteria Api completely protect from SQL Injection?
...
0
votes
0answers
46 views
How to join table using Criteria API?
How to run the query below using Criteria API:
"SELECT C.COMPOUND_PROPERTY_NAME ,L.LOGICAL_OERATOR_NAME,RG.VALUE,C.UNIT
FROM COMPOUND_PROPERTY C,LOGICAL_OPERATOR L,RGET RG
WHERE ...
0
votes
3answers
109 views
Select records which doesn't have specific records in joined table
Hi I'm trying to select records from one table which doesn't have records in connected many-to-many table with specific values.
I will explain on sample tables:
documentation:
id_documentation
...
0
votes
1answer
154 views
Getting a JPA Criteria Query to work with an inherited list
Say I have an entity
@Entity
public class Test {
@ManyToMany
@JoinTable(..etc..)
private List<Subject> subjects; // School subjects this test is associated with
....
And an entity
...
0
votes
1answer
109 views
Project an Entity from a relationship with Hibernate Criteria
I'm having trouble getting a list of related entity objects as the result of a criteria expression. I have two objects with a many to many relationship such that ObjectA <-> ObjectB where a single ...
0
votes
0answers
156 views
Criteria API join a lazy Collection
I have the following setup
@Entity
@Table(name = "Product")
public class Product implements Serializable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private int id;
...




