Hibernate and JPA
Learn how to use a SQL database with Quarkus and Hibernate.
We'll cover the following...
Introduction
The Jakarta Persistence API JPA is a specification of Java. It is used to persist data in relational databases.
Hibernate is a popular implementation of the JPA specifications and it is the most popular Java
Press + to interact
Adding the extensions
To use an SQL database, we need to add a couple of dependencies, the first being quarkus-hibernate-orm
, the Hibernate extension for Quarkus. The second is the ...