Top "Criteria-api" 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.

building a criteria query with jpa 2.0 by using a dynamic list

I'm a bit confused while creating a criteriaQuery with JPA 2.0. Prerequisites: I have a Gui, where the user can mark …

java dynamic jpa-2.0 criteria-api criteriaquery
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 …

hibernate criteria-api hibernate-criteria
JPA CriteriaBuilder Subquery multiselect

I have a question about Subquery class in jpa. I need to create subquery with two custom field, but subquery …

java jpa criteria criteria-api