Tagged Questions
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 (N)Hibernate Criteria, use the [criteria] tag.
15
votes
3answers
12k views
NHibernate - CreateCriteria vs CreateAlias
Assuming the following scenario:
class Project{
public Job Job;
}
class Job{
public Name;
}
Assuming I want to use the Criteria API to search for all projects whose Job has the name ...
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 ...
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
407 views
How can I express joining to a grouped subquery using NHibernate?
I'm trying to express a SQL query using NHibernate's Criteria API, and I'm running into difficulty because I'm thinking in a database-centric way while NHibernate is object-centric.
SQL (works ...
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
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
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
1answer
143 views
NHibernate Criteria QueryByExample stuck with SQL in the middle
I am using Criteria to speed up a query, and I am almost there.
Using Query By Example to match up rows in a table, remove duplicate rows with the same id, and then paginate.
Of course I can't ...
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
1k views
Criteria API returns a too small resultset
How is this possible, I have to following criteria
Criteria criteria = getSession().createCriteria(c);
criteria.setResultTransformer(Criteria.DISTINCT_ROOT_ENTITY);
...
5
votes
1answer
1k views
NHibernate - easiest way to do a LIKE search against an integer column with Criteria API?
I'm trying to do a like search against an integer column, what I need to do is actually cast the column to a varchar and then do the like search. Is this possible? what's the easiest way to do this ...
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
1answer
819 views
how to speed up hibernate criteria 'ilike queries' with oracle database
We are using hibernate with oracle (11) and have severe performance problems due to the usage of 'ilike', the case insensitive 'like'.
The java / hibernate code looks like:
c1.add( ...
4
votes
2answers
354 views
Can I use table-valued function as query source in NHibernate?
I have one question to ask you, dear community, as you may have guessed. So.
I want NHibernate to filter the results of a query basing on the evaluation of table-valued sql function.
Possible SQL ...
4
votes
1answer
2k 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
...
4
votes
1answer
1k views
How to specify pessimistic lock with Criteria API?
I am retrieving a list of objects in hibernate using Criteria API. However I need lock on those objects as another thread executing at the same time will get the exact objects and only one of the ...
4
votes
6answers
2k views
Hibernate Criteria API - adding a criterion: string should be in collection
I have to following entity object
@Entity
public class Foobar {
...
private List<String> uuids;
...
}
Now I'd like to make a criteria query which would fetch all Foobar pojos ...
4
votes
2answers
8k views
(Lazy) LEFT OUTER JOIN using the Hibernate Criteria API
I want to perform a LEFT OUTER JOIN between two tables using the Criteria API. All I could find in the Hibernate documentation is this method:
Criteria criteria = this.crudService
...
4
votes
3answers
3k views
Hibernate criteria query on different properties of different objects
Suppose I have classes like:
class A {
B getB();
C getC();
}
class B {
String getFoo();
}
class C {
int getBar();
}
and I want to filter criteria on A, two filters on different subclass ...
3
votes
3answers
157 views
hibernate criteria API: filtering by subset
I have a class which contains a Set of Bs.
I'd like to make an Hibernate Criteria to get all A's for which the set of Bs is a superset of some given set.
To make an example:
let's say we have three ...
3
votes
2answers
305 views
NHibernate entity projection
I'm using NHibernate with QueryOver API to query my domain entities. The problem is getting duplicate results. For example when querying following domain:
I use code like:
var list = ...
3
votes
1answer
273 views
Using the JPA2 Criteria API to query for a string subset
I'm upgrading from the Hibernate Criteria API to the JPA2 Criteria API, and am running into the following problem, which I can't seem to resolve.
In the Hibernate Criteria I was using ...
3
votes
1answer
872 views
How to conver date type in hibernate criteria
I have a situation. I have two kinds of date in the mysql database. One is date and another is datetime. Now in hibernate criteria I have to check whether one date is greater than the other or not?
...
3
votes
1answer
1k views
Using JPA 2.0 Criteria API and cast causes generated JPQL to fail in Hibernate
I am a first time user of the new JPA 2.0 Criteria API and I 'm running into a problem when I need to cast a number field to String to compare it with a String parameter. Reason is that I want to ...
3
votes
1answer
2k views
JPA criteria query, order on class
Is there a way with JPA criteria queries to order on class? Imagine the following domain objects:
abstract class Hobby { ... }
class Coding extends Hobby { ... }
class Gaming extends Hobby { ... }
...
3
votes
3answers
967 views
Using @ElementCollection in CriteriaQuery
public enum ReportStatus {
SUCCCEED, FAILED;
}
public class Work {
@ElementCollection
@Enumerated(EnumType.STRING)
List<ReportStatus> reportStatuses;
}
Given the following ...
3
votes
1answer
563 views
Using JPA2 criteria API without Metamodel on a List property
How can I formulate the following JPA2 criteria query without using the metamodel classes:
CriteriaBuilder cb = em.getCriteriaBuilder();
CriteriaQuery<Employee> cq = ...
3
votes
2answers
334 views
Is there something like Restrictions.eq(true, false) in Criteria API?
I need a generic Criterion which forces the result to zero matches.
Something like Restrictions.eq(true, false) ?
3
votes
0answers
249 views
Criteria SpatialRestrictions.IsWithinDistance NHibernate.Spatial
Has anyone implemented this, or know if it would be difficult to implement this/have any pointers?
public static SpatialRelationCriterion IsWithinDistance(string propertyName, object anotherGeometry, ...
3
votes
1answer
2k views
Using NHibernate Criteria API to select specific set of data together with a count
I have the following domain set up for persistence with NHibernate:
I am using the PaperConfiguration as the root aggregate.
I want to select all PaperConfiguration objects for a given Tier and ...
3
votes
1answer
2k views
Does Hibernate's Criteria API still not support nested relations
I'd like to use Hibernate's Criteria API for precisely what everybody says is probably its most likely use case, applying complex search criteria. Problem is, the table that I want to query against ...
2
votes
3answers
74 views
Need help creating JPA criteria query
I'm building my first Java EE web application using Glassfish and JSF. I'm fairly new to the criteria query and I have a query I need to perform but the javaee6 tutorial seems a little thin on ...
2
votes
0answers
72 views
JPA2 and criteria queries: subqueries with group functions
I have a native SQL query I would like to express with a JPA2 criteria query.
This query already works, but I haven't been able to get it using just JPA2.
I think mostly because I lack experience on ...
2
votes
0answers
54 views
createCriteria with uniqueResult executes the select query multiple times
i use createCriteria with uniqueResult to select an object by id as follows:
1- Service:
@Service
@Transactional
public class MyService {
public Employee getEmployeeById(long ...
2
votes
1answer
54 views
NHibernate Query with joins and group by
I have 4 assoiciated classes and need to do a query.
The classes are:
public class Project{
IList<Process> Processes{get;set;}
}
public class Process{
...
2
votes
1answer
149 views
Hibernate Criteria object - perform a INTERSECT
I was wondering if their is an easy to perform a oracle INTERSECT using the Criteria API object.
Using Hibernate 3.2
EX. I want all of the t.value that exist in 'table' where the names are dora and ...
2
votes
2answers
262 views
EclipseLink JPA: Can I run multiple queries from one builder?
I have a method that builds and runs a Criteria query. The query does what I want it to, specifically it filters (and sorts) records based on user input.
Also, the query size is restricted to the ...
2
votes
3answers
114 views
criteria api where 1<>1 clause
I want the query not to return any values. I can't just not query database, so I'd like to add some unreachable condition to predicates, something like 'where 1 <> 1'. But the ...
2
votes
2answers
475 views
How to properly determine whether an “exists” JPA Criteria Query clause returned true or false?
I don't know how to make JAP criteria query end up with a boolean output.
The goal is to have a criteria query that looks like this when rendered on Oracle:
select 1 from dual where exists ( ... );
...
2
votes
1answer
163 views
Nhibernate With Clause Usage
I am trying to reproduce a query using the Nhibernate Criteria API and cannot work out how to add a criteria clause that allows me to compare two values from different tables.
The best trivial ...
2
votes
1answer
1k views
Hibernate Restrictions.in vs. Disjunction
Other than less code, what is the difference between the following two approaches to building an IN clause using the Hibernate Criteria API? Are there performance concerns? Is there some logic in ...
2
votes
1answer
888 views
Grails Criteria projections on joined table
I have an issue with grails criteria builder, I want to do a projection on a column that is on a table that is in one-to-many relation to parent table example:
Car.createCriteria() {
projections ...
2
votes
1answer
604 views
Tuple result Criteria API subquery
I am trying to use subqueries in an application I am writing using JPA 2.0 type-safe criteria API, with Hibernate 3.6.1.Final as my provider. I have no problem selecting primitive types (Long, ...
2
votes
2answers
307 views
criteria api--root.fectch() how to fetch a collection?
The args' type of method fetch() can be SingularAttribute, PluralAttribute, why not can't be ListAttribute ?
Then, how to fetch a collection with critria api ? Thank you.
2
votes
2answers
302 views
How to use key of MAP in Criteria Query?
I have a Bean like this
Class TestA
{
Map<String,TestB> testBMap;
}
Class TestB
{
String data;
...
}
I want to fetch the TestA data along with the map testBMap where key ...
2
votes
1answer
151 views
Prevent Hibernate N+1 Selects when grouping by an entity
I have a Hibernate Criteria object that I build thusly:
Criteria obsCriteria = hibernateTemplate.getSessionFactory()
.getCurrentSession().createCriteria(Observation.class);
ProjectionList ...
2
votes
2answers
380 views
Using Hibernate-Search for Complex Queries instead of Criteria API
In an app using Wicket+Spring+JPA/Hibernate stack, I have an Inbox/Search page which should have quite complex search capabilities, where records saved in a database are filtered using a myriad of ...
2
votes
3answers
1k 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 ...
2
votes
2answers
7k 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;
...
...