↧
Writing ORM for Insurance table
In this lesson we will write the java class and add necessary code in the contact.hbm.xml file. Create POJO class:Here is the code of our java file (Insurance.java), which we will map to the insurance...
View ArticleHibernate Criteria Query Example
The Criteria interface allows to create and execute object-oriented queries. It is powerful alternative to the HQL but has own limitations. Criteria Query is used mostly in case of multi criteria...
View ArticleCriteria Query Examples
In the last lesson we learnt how to use Criteria Query to select all the records from Insurance table. In this lesson we will learn how to restrict the results returned from the database. Different...
View Article