Adding Persistence
In this chapter, we’ll add a persistence layer to the application and learn how to connect it to a database. We will also define the Entity classes that will support the main functionality for the task manager web application we are building throughout the book. By the end of this chapter, you should be able to persist and store the data of your application in a database. You should also have a basic understanding of Hibernate and be able to define your own entities.
We will be covering the following topics in this chapter:
- Data persistence in Quarkus
- Implementing the task manager data model
- Quarkus Dev Services