Category: database
How does work Hibernate ORM with Panache in Quarkus?
Natan Ferreira- 0
- 155
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
How to perform database schema versioning with Flyway and Spring?
Natan Ferreira- 0
- 697
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