IntelliJ IDEA 2020.3 Help

Hibernate

Hibernate is an object-relational mapping framework that implements the Jakarta Persistence (JPA) specification.

IntelliJ IDEA provides the following:

  • Coding assistance specific to Hibernate.

  • A dedicated facet for managing the Hibernate configuration hibernate.cfg.xml.

  • Additions to the Persistence tool window for managing your Hibernate items, creating configuration files and persistent classes, navigating to related source code in the editor, opening diagrams and consoles, and more.

  • Entity-relationship (ER) diagrams that you can access from the Persistence tool window.

  • An ability to generate managed entity classes and object-relational mappings for them by importing a database schema or an EJB deployment descriptor file ejb-jar.xml.

  • The Hibernate console for writing and running HQL queries, and analyzing the query results.

Create a new Java Enterprise project with Hibernate

  1. From the main menu, select File | New | Project.

  2. In the New Project dialog, select Java Enterprise.

    New Java Enterprise project wizard

    Select the necessary settings and click Next to continue.

  3. In the Libraries and Frameworks list, select the Persistence (JPA) specification and Hibernate as the implementation.

    New Java Enterprise project with JPA and Hibernate

    Then click Next.

  4. Enter a name for your project and click Finish.

IntelliJ IDEA creates the default project structure with the JPA facet and all the necessary libraries as external dependencies, such as javax.persistence for the JPA specification and org.hibernate for the Hibernate framework. If you specified an application server, IntelliJ IDEA will also create a run configuration to start the server, build and deploy the artifact.

Enable Hibernate support for an existing Java Enterprise project

If you already have a Java Enterprise application, you can add Hibernate as a facet.

  1. In the Project tool window, right-click the necessary module and select Add Framework Support.

  2. Select Hibernate and choose whether you want to use an existing library, create a new one, or configure the library later.

    You can also choose whether you want to create a default Hibernate configuration file with the main class and whether you want to import the database schema from a defined data source.

  3. Click OK to apply the changes to your project.

Alternatively, you can open the Project Structure dialog Ctrl+Alt+Shift+S, then open Modules, select the necessary module, click the Add button, and then find and add the Hibernate framework. You will see the new Hibernate facet under Facets.

Last modified: 22 April 2021