Top "Hibernate-criteria" questions

The Criteria interface of Hibernate ORM , represents a query against a particular persistent class.

Hibernate Criteria: Left Outer Join with restrictions on both tables

I am doing a LEFT OUTER JOIN, but I am only able to apply Restrictions on the first table. Is …

hibernate join criteria hibernate-criteria
Left join using hibernate criteria

I have two entity: Issue and Issue_Tracker. I am using Hibernate 3.6. SELECT `issues`.`issue_id`, `issues`.`issue_raised_date`, `…

java mysql hibernate hibernate-criteria
Criteria eager fetch-joined collection to avoid n+1 selects

Let's say Item and Bid are entities: an Item has many Bids. They are mapped in Hibernate in a typical …

java hibernate hibernate-criteria
hibernate update single column using criteria

I have a table that contains mamy columns and I want to update the one or few columns of the …

hibernate hibernate-criteria dml
Hibernate criteria on collection values

I'm trying to put together a complicated query using Hibernate. I've been leaning toward Criteria, but I'm beginning to suspect …

java hibernate orm hibernate-criteria
SQL 'LIKE' operator in Hibernate Criteria API

I want to implement some universal filter with Hibernate Criteria. It should work like LIKE operator from SQL: SELECT * FROM …

java hibernate criteria sql-like hibernate-criteria
How to implement with hibernate criteria Object the select query with inner join

I'm new with Hibernate and Criteria Query. So I have implemented the query in HQL: select A.mobilephone B.userNick …

java hibernate hibernate-criteria
Hibernate CriteriaBuilder to join multiple tables

I'm trying to join 4 tables using hibernate criteriabuilder.. Below are the tables respectively.. ` @Entity public class BuildDetails { @Id private long …

java mysql hibernate hibernate-mapping hibernate-criteria
how to write Hibernate Criteria to take nested objects by Projection List?

I want to take Nested object values in Hibernate Projection List. I having Pojo 'Charge' and 'Tariff' class with OneToMany …

java spring hibernate criteria hibernate-criteria