Hibernate Technical Interview Questions Answers

Hibernate Technical Interview Questions Answers

What is JDBC?

JDBC stands for Java Database Connectivity and provides a set of Java APIs for accessing the relational databases from the Java program. These Java APIs enable Java programs to execute SQL statements and interact with any SQL-compliant database.

What is ORM?

ORM stands for Object-Relational Mapping (ORM) and is a programming technique for converting data between relational databases and object-oriented programming languages such as Java, C#, etc.

What are the advantages of ORM over JDBC?

An ORM system has the following advantages over plain JDBC Advantages Lets business code access objects rather than DB tables. Hides details of SQL queries from OO logic. Based on JDBC 'under the hood' No need to deal with the database implementation. Entities are based on business concepts rather than database structure. Transaction management and automatic key generation. The fast development of the application.

Name some of the ORM frameworks based on JAVA.

There are several persistent frameworks and ORM options in Java. − Enterprise JavaBeans Entity Beans Java Data Objects Castor TopLink Spring DAO Hibernate.

What is Hibernate?

Hibernate is an Object-Relational Mapping(ORM) solution for JAVA and it was raised as an open source persistent framework created by Gavin King in 2001. It is a powerful, high-performance Object-Relational Persistence and Query service for any Java Application. Hibernate maps Java classes to database tables and from Java data types to SQL data types and relieves the developer from 95% of common data persistence-related programming tasks.

What are the advantages of using Hibernate?

Following are the advantages of using Hibernate. − Hibernate takes care of mapping Java classes to database tables using XML files and without writing any line of code. Provides simple APIs for storing and retrieving Java objects directly to and from the database. If there is a change in the Database or in any table then the only need to change XML file properties. Abstract away the unfamiliar SQL types and provide us to work around familiar Java Objects. Hibernate does not require an application server to operate. Manipulates Complex associations of objects in your database. Minimize database access with smart fetching strategies. Provides Simple querying of data.


Name some of the databases that hibernate supports.

Hibernate supports almost all the major RDBMS. Following is a list of a few of the database engines supported by Hibernate− HSQL Database Engine DB2/NT MySQL PostgreSQL FrontBase Oracle Microsoft SQL Server Database Sybase SQL Server Informix Dynamic Server

Name some of the java based tools/frameworks that support hibernate integration.

Hibernate supports a variety of other technologies, including the following − XDoclet Spring J2EE Eclipse plug-ins Maven

What are the key components/objects of hibernation?

Following are the key components/objects of Hibernate
Configuration − Represents a configuration or properties file required by the Hibernate.
SessionFactory − Configures Hibernate for the application using the supplied configuration file and allows for a Session object to be instantiated.
Session − Used to get a physical connection with a database.
Transaction − Represents a unit of work with the database and most of the RDBMS support transaction functionality.
Query − Uses SQL or Hibernate Query Language (HQL) string to retrieve data from the database and create objects.
Criteria − Used to create and execute object-oriented criteria queries to retrieve objects.


What are the two key components of a hibernate configuration object?

The Configuration object provides two key components − Database Connection Which is handled through one or more configuration files supported by Hibernate. These files are hibernate.properties and hibernate.cfg.xmlClass Mapping Setup This component creates the connection between the Java classes and database tables.


What is a configuration object in hibernate?

The Configuration object is the first Hibernate object you create in any Hibernate application and is usually created only once during application initialization. It represents a configuration or properties file required by the Hibernate.


What is a SessionFactory in hibernate?

The configuration object is used to create a SessionFactory object which in turn configures Hibernate for the application using the supplied configuration file and allows for a Session object to be instantiated. The SessionFactory is a thread-safe object and used by all the threads of an application. The SessionFactory is a heavyweight object so usually, it is created during application start-up and kept for later use. You would need one SessionFactory object per database using a separate configuration file. So if you are using multiple databases then you would have to create multiple SessionFactory objects.


What is Session in hibernate?

A Session is used to get a physical connection with a database. The Session object is lightweight and designed to be instantiated each time an interaction is needed with the database. Persistent objects are saved and retrieved through a Session object. The session objects should not be kept open for a long time because they do not usually thread safe and they should be created and destroyed as needed.


What is Transaction in hibernate?

A Transaction represents a unit of work with the database and most of the RDBMS support transaction functionality. Transactions in Hibernate are handled by an underlying transaction manager and transaction (from JDBC or JTA). This is an optional object and Hibernate applications may choose not to use this interface, instead managing transactions in their own application code.


What is Query in hibernate?

Query objects use SQL or Hibernate Query Language (HQL) string to retrieve data from the database and create objects. A Query instance is used to bind query parameters, limit the number of results returned by the query, and finally execute the query.


What are the Criteria in hibernate?

Criteria objects are used to create and execute object-oriented criteria queries to retrieve objects.


Name some of the properties you would require to configure for databases in a standalone situation.

Properties and Description

hibernate. dialect

This property makes Hibernate generate the appropriate SQL for the chosen database.

hibernate.connection.driver_class

The JDBC driver class.

hibernate.connection.url

The JDBC URL to the database instance.

hibernate.connection.username

The database username.

hibernate.connection.password

The database password.

hibernate.connection.pool_size

Limits the number of connections waiting in the Hibernate database connection pool.

hibernate.connection.autocommit

Allows auto-commit mode to be used for the JDBC connection.

What are the three states of a persistent entity at a given point in time?

Instances may exist in one of the following three states at a given point in time −
transient − A new instance of a persistent class that is not associated with a Session and has no representation in the database and no identifier value is considered transient by Hibernate. 

persistent − You can make a transient instance persistent by associating it with a Session. A persistent instance has a representation in the database, an identifier value, and is associated with a Session.

detached − Once we close the Hibernate Session, the persistent instance will become a detached instance.


What is the purpose of the Session?beginTransaction() method?

Session.beginTransaction method begins a unit of work and returns the associated Transaction object.

Which method is used to add criteria to a query?

Session.create criteria creates a new Criteria instance, for the given entity class, or a superclass of an entity class.

Which method is used to create an HQL query?

Session.createQuery creates a new instance of Query for the given HQL query string.

Which method is used to create a SQL query?

Session.create SQL query creates a new instance of SQLQuery for the given SQL query string.

Which method is used to remove a persistent instance from the datastore?

Session. delete removes a persistent instance from the datastore.

Which method is used to get a persistent instance from the datastore?

Session. get returns the persistent instance of the given named entity with the given identifier, or null if there is no such persistent instance.

Which method is used to re-read the state of the given instance from the underlying database?

Session. refresh re-reads the state of the given instance from the underlying database.


Which method is used to save the state of the given instance from the underlying database?

Session. save saves the state of the given instance from the underlying database.


Which method is used to update the state of the given instance from the underlying database?

Session. update updates the state of the given instance from the underlying database.


Which method is used to save or update the state of the given instance from the underlying database?

Session.saveOrUpdate either saves(Object) or updates(Object) the given instance.


What are persistent classes in hibernating?

Java classes whose objects or instances will be stored in database tables are called persistent classes in Hibernate.


What are the best practices that hibernate recommends for persistent classes?

There are following main rules of persistent classes, however, none of these rules are hard requirements. All Java classes that will be persisted need a default constructor. All classes should contain an ID to allow easy identification of your objects within Hibernate and the database. This property maps to the primary key column of a database table. All attributes that will be persisted should be declared private and have getXXX and setXXX methods defined in the JavaBean style. A central feature of Hibernate, proxies, depends upon the persistent class being either non-final or the implementation of an interface that declares all public methods. All classes that do not extend or implement some specialized classes and interfaces are required by the EJB framework.


Where-Object/relational mappings are defined in hibernate?

Object/relational mappings are usually defined in an XML document. This mapping file instructs Hibernate on how to map the defined class or classes to the database tables. We should save the mapping document in a file with the format <classname>.hbm.XML.


What is the root node of hbm.xml?

The mapping document is an XML document having <hibernate-mapping> as the root element which contains all the <class> elements.


Which element of hbm.xml defines a specific mapping from Java classes to the database tables?

The <class> elements are used to define specific mappings from Java classes to the database tables. The Java class name is specified using the name attribute of the class element and the database table name is specified using the table attribute.


Which element of hbm.xml defines maps the unique ID attribute in class to the primary key of the database table?

The <id> element maps the unique ID attribute in class to the primary key of the database table. The name attribute of the id element refers to the property in the class and the column attribute refers to the column in the database table. The type attribute holds the hibernate mapping type, this mapping type will convert from Java to SQL data type.


Which element of hbm.xml is used to automatically generate the primary key values?

The <generator> element within the id element is used to automatically generate the primary key values. Set the class attribute of the generator element is set to native to let hibernate pick up either identity, sequence, or Hilo algorithm to create a primary key depending upon the capabilities of the underlying database.


Which element of hbm.xml is used to map a Java class property to a column in the database table?

The <property> element is used to map a Java class property to a column in the database table. The name attribute of the element refers to the property in the class and the column attribute refers to the column in the database table. The type attribute holds the hibernate mapping type, this mapping type will convert from Java to SQL data type.

Which element of hbm.xml is used to map a java. util.Set property in hibernate?

This is mapped with a <set> element and initialized with java.util.HashSet.


Which element of hbm.xml is used to map a java. util.SortedSet property in hibernate?

This is mapped with an <set> element and initialized with java.util.TreeSet. The sort attribute can be set to either a comparator or natural ordering.


Which element of hbm.xml is used to map a java. util.List property in hibernate?

This is mapped with a <list> element and initialized with java.util.ArrayList.

Which element of hbm.xml is used to map a java. util.Collection property in hibernate?

This is mapped with a <bag> or <ibag> element and initialized with java.util.ArrayList.

Which element of hbm.xml is used to map a java. util.Map property in hibernate?

This is mapped with an <map> element and initialized with java.util.HashMap.

Which element of hbm.xml is used to map a java. util.SortedMap property in hibernate?

This is mapped with an <map> element and initialized with java.util.TreeMap. The sort attribute can be set to either a comparator or natural ordering.


What is a many-to-one association?

A many-to-one association is the most common kind of association where an Object can be associated with multiple objects. For example, the same address object can be associated with multiple employee objects. <many-to-one> element is used to define many-to-one association. The name attribute is set to the defined variable in the parent class. The column attribute is used to set the column name in the parent table.

What is a one-to-one association?

A one-to-one association is similar to a many-to-one association with the difference that the column will be set as unique. For example, an address object can be associated with a single employee object. <many-to-one> element is used to define one-to-one association. The name attribute is set to the defined variable in the parent class. The column attribute is used to set the column name in the parent table which is set to unique so that only one object can be associated with another object.

What is a one-to-many association?

In One-to-Many mapping association, an object can be associated with multiple objects. For example, the Employee object relates to many Certificate objects. A One-to-Many mapping can be implemented using a Set java collection that does not conduplicate elements meant. <one-to-many> element of the set element indicates that one object relates to many other objects.

What is a many-to-many association?

A Many-to-Many mapping can be implemented using a Set java collection that does not contain duplicate elements. <many-to-many> element duplicate elementsject relates to many other objects and column attributes are used to link intermediate columns.

Is SessionFactory a thread-safe object?

Yes, SessionFactory is a thread-safe and can be accessed by multiple threads simultaneously.

Is Session a thread-safe object?

No, Session is not thread-safe.

What is the difference between save() and persist() methods of session objects?

session.save saves the object and returns the id of the instance whereas persist does not return anything after saving the instance.


What is the difference between get() and load() methods of the session objects?

There are the following differences between getting () and load() methods. get() returns null if no data is present whereas load throws ObjectNotFoundException exception in such case. get() always hits the database whethe reas loading () method doesn't hit the database. get() returns actual object whereas load() returns proxy object. A central feature of Hibernate, proxies, depends upon the persistent class being either non-final or the implementation of an interface that declares all public methods. All classes that do not extend or implement some specialized classes and interfaces are required by the EJB framework.


What is lazy loading?

Lazy loading is a technique in which objects are loaded on a demand basis. Since Hibernate 3, lazy loading is by default, enabled so that child objects are not loaded when a parent is loaded.

What is HQL?

HQL stands for Hibernate Query Language. It takes java objects in the same way as SQL takes tables. HQL is an Object Oriented Query language and is database-independent.


What is the first level cache in hibernate?

The first-level cache is the Session cache and is a mandatory cache through which all requests must pass. The Session object keeps an object under its own power before committing it to the database.


What is the second level cache in hibernate?

The second level cache is an optional cache and the first-level cache will always be consulted before any attempt is made to locate an object in the second-level cache. The second-level cache can be configured on a per-class and per-collection basis and is mainly responsible for caching objects across sessions.


What is Query level cache in hibernate?

Hibernate also implements a cache for query resultsets that integrates closely with the second-level cache. This is an optional feature and requires two additional physical cache regions that hold the cached query results and the timestamps when a table was last updated. This is only useful for queries that are run frequently with the same parameters.


What are concurrency strategies?

A concurrency strategy is a mediator responsible for storing items of data in the cache and retrieving them from the cache. If you are going to enable a second-level cache, you will have to decide, for each persistent class and collection, which cache concurrency strategy to use. 

Transactional − Use this strategy for read-mostly data where it is critical to prevent stale data in concurrent transactions, in the rare case of an update. 

Read-write − Again use this strategy for read-mostly data where it is critical to prevent stale data in concurrent transactions, in the rare case of an update. 

Nonstrict-read-write − This strategy makes no guarantee of consistency between the cache and the database. Use this strategy if data hardly ever changes and a small likelihood of stale data is not of critical concern. 

Read-only − A concurrency strategy suitable for data that never changes. Use it for reference data only.
Previous Post Next Post