Tag: criteria
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…
Difference between HQL and Criteria Query in Hibernate
by  Java4s | 23 Comments
  [ Ask Question ]
Let us see the main differences between HQL and Criteria Query HQL is to perform both select and non-select operations on the data, but Criteria is only for selecting the data, we cannot perform non-select operations using criteria HQL…
Example On Hibernate Pagination With Servlet In Eclipse
by  Java4s | 14 Comments
  [ Ask Question ]
Let us see an example on hibernate pagination with servlet.. when response for request is too large then instead of displaying all records at a time on browser we can…