From the course: Java Database Access with Hibernate

What is Hibernate? - Java Tutorial

From the course: Java Database Access with Hibernate

Start my 1-month free trial

What is Hibernate?

- [Instructor] You may be wondering, what is Hibernate? I know when I first heard it, all I could think of was bears sleeping in the winter. Let's take a look at the Hibernate framework. Hibernate is a framework that simplifies the use of relational databases in Java applications by presenting relational data as simple Java objects otherwise known as plain old Java objects or POJO. These objects are accessed in our programs through a session manager. Hibernate is referred to as an Object Relational Mapping tool or ORM as Java programmers were used to working with objects so Hibernate takes away the details of accessing the database and allows us to again work with something familiar such as objects. This tool greatly increases programmer productivity when the application requires data to exist after a program ends, otherwise known as data persistence. It makes persistent database access easier by using high-level object handling functions. Hibernate is a free open source software available through the GNU general public license. Let's take a look at a diagram that shows where Hibernate fits into the process. At the top, we have our Java application. Our application wants to connect to the data in our database which allows us to have data that exist after our application is finished. So right below the Java application, we have Hibernate. Hibernate configures our interaction with the database, creates a session factory that allows us to create sessions with the database. It allows us to create transactions. Transactions are important when dealing with databases because if there's any problem, you want to be able to roll back your changes so you don't have any data corruption. It offers queries and criteria for our queries. Then Hibernate sits between the Java application and the JDBC, the Java Database Connectivity API. Hibernate takes care of the mapping and configuration required to access the database, hiding the details and allowing us to concentrate on the business logic and not worry about the database schema. It also provides data query and retrieval operations. It generates the SQL syntax needed to access the database and format the results into plain old Java objects instead of a SQL result set, which makes it easier for a programmer to understand and use in their programs. The idea of persistence using Java objects involves the mapping of the objects in Java directly to the relational entities in the database or the tables in the database. If you've ever worked on database design, you know the design of the tables can be different from the Java object, but this is why Hibernate makes it so easy to work with the data through these objects instead of dealing directly with one or multiple tables. Hibernate can be used in any Java application whether it's a swing application, a servlet, a JSP page, or any application that requires access to a database. Let's take a look at some of the advantages that Hibernate brings to the table. Hibernate takes care of mapping Java classes or objects to database tables using XML files and annotations without writing any lines of code. It provides simple APIs for restoring and retrieving Java objects directly to and from the database. If there is a change in the database schema or in any table, then you only need to change the XML file properties. It handles complex associations of objects in your database. It allows for minimal database access with smart fetching strategies and it provides simple querying of data. Hibernate supports most of the relational databases such as HQL database engine, DB2/NT, MySQL, Oracle, FrontBase, Microsoft SQL Server, and more.

Contents