Hibernate Interview Questions Series Part 2

This is the Series two of Hibernate Interview Questions 11.What role does the Session interface play in Hibernate? The Session interface is the primary interface used by Hibernate applications. It is a single-threaded, short-lived object representing a conversation between the application and the persistent store. It allows you to create query objects to retrieve persistent … Read more

Hibernate Interview Questions Series Part 1

This is the Series of Hibernate Interview Questions mostly asked in freshers and experienced level Series Oneof Hibernate Interview Questions 1.What is ORM ? ORM stands for object/relational mapping. ORM is the automated persistence of objects in a Java application to the tables in a relational database. 2.What does ORM consists of ? An ORM … Read more