Tag: hibernate criteria query
Criteria Query, Hibernate Criteria Query Introduction
by  Java4s | 8 Comments
  [ Ask Question ]
Unlike HQL, Criteria is only for selecting the data from the database, that to we can select complete objects only not partial objects, in fact by combining criteria and projections concept we can select partial objects too we will…
Example On Hibernate Criteria Query
by  Java4s | 13 Comments
  [ Ask Question ]
Let us see an example program on hibernate criteria query, files required…. Product.java(POJO class) Product.hbm.xml hibernate.cfg.xml ForOurLogic.java (For writing our business logic) Product.java package str; public class Product{ private int productId; private String proName; private double price; public void…