Frequently asked hibernate interview questions and answers

What is the difference between sorted and ordered collection in hibernate?
Sorted Collection: The sorted collection is a collection that is sorted using the Java collections framework. The sorting is done in the memory of JVM that is running hibernate, soon after reading the data from the database using Java Comparator The less the collection the more the efficient of sorting
Ordered Collection: The order collections will also sorts a collection by using the order by clause for the results fetched.The more the collection, the more efficient of sorting.

 

Describe your favorite aspect of the Hibernate framework.
There are a lot to choose from, but I’d say my favorite thing is that Hibernate is that it’s an object-oriented query language.
There are a lot of potential answers to this question. The interviewer just wants to see where your values lie.

 

Explain the main difference between Entity Beans and Hibernate
Entity beans are to be implemented by containers, classes, descriptors. Hibernate is just a tool that quickly persist the object tree to a class hierarchy in a database and without using a single SQL statement. The inheritance and polymorphism is quite simply implemented in hibernate which is out of the box of EJB and a big drawback.

 

What is your least favorite aspect of the Hibernate framework?
It does a lot of things right, but I often find myself having to write boilerplate code while using Hibernate. The verbosity of the language makes my job more difficult.
Once again, the interviewer wants to see where your values lie.

 

Explain the difference between Hibernate and Spring.
Hibernate is an ORM tool for data persistency. Spring is a framework for enterprise applications. Spring supports hibernate and provides the different classes which are templates that contains the common code.

 

Does a Session object use a first-level cache or a second-level cache?
A Session object uses a first-level cache. You’d use a second-level cache if it was a SessionFactory object.
This is a skills question, which makes sure you’ve spent enough time with the program to know its ins and outs.

 

Why hibernate is advantageous over Entity Beans & JDBC?
An entity bean always works under the EJB container, which allows reusing of the object external to the container. An object can not be detached in entity beans and in hibernate detached objects are supported.
Hibernate is not database dependent where as JDBC is database dependent. Query tuning is not needed for hibernate as JDBC is needed. Data can be placed in multiple cache which is supported by hibernate, whereas in JDBC the cache is to be implemented.

 

How do you maintain your technical expertise?
I take continuing education classes. I also try to read up on books and magazines. Then of course there are conferences — I try and go to at least one or two a year, since they can be so educational.
The interviewer wants to makes sure that you’re willing to maintain your expertise.

 

What is the advantage of Hibernate over jdbc?
The advantages of Hibernate over JDBC are:
• Hibernate code will work well for all databases, for ex: Oracle,MySQL, etc. where as JDBC is database specific.
• No knowledge of SQL is needed because Hibernate is a set of objects and a table is treated as an object, where as to work with JDBC, one need to know SQL.
• Query tuning is not required in Hibernate. The query tuning is automatic in hibernate by using criteria queries, and the result of performance is at its best. Where as in JDBC the query tuning is to be done by the database authors.
• With the support of cache of hibernate, the data can be placed in the cache for better performance. Where as in JDBC the java cache is to be implemented.

 

Name an advantage of using POJOs.
POJOs — which stand for Plain Old Java Objects — are more efficient than regular java classes.
This is a skills question, which makes sure you’ve spent enough time with the program to know its ins and outs.

Source:

Hibernate interview questions and answers