Quarkus Framework for Java

How does work Hibernate ORM with Panache in Quarkus?

Hibernate ORM is used to perform object-relational mapping for Java. This means there is a mapping between the database and Java, which facilitates all interaction with the database by automating many things. As a result, we can develop software with more practicality and agility. Hibernate ORM with Panache focuses on making entities trivial and enjoyable…

Read More
Flyway and Spring

How to perform database schema versioning with Flyway and Spring?

Flyway is a tool used for database migration control. Migrations are executed automatically, and we also have a history of database modifications. Flyway supports many databases, but in this example, we will use MySQL. Requirements Project With this site, you can create your Spring project: https://start.spring.io To establish a connection with the database, we need…

Read More