From the course: Learning Quarkus

Unlock the full course today

Join today to access over 22,400 courses taught by industry experts or purchase this course individually.

Data access with Quarkus

Data access with Quarkus

From the course: Learning Quarkus

Start my 1-month free trial

Data access with Quarkus

- [Instructor] Now it's time to jump in for a little bit more depth with the Quarkus framework, and we're going to take a look at data access within the framework itself. The data access in Quarkus is based entirely on the concept of a data source. Which if you've ever done Java development in the past, the data source construct should be relatively familiar. The primary purpose of configuring Quarkus is to wire the data source. Again, the data source being the central construct, regardless of whether you're using ORM or JDBC, it's the data source that really matters. All of the configuration for that data source is managed by Quarkus through the common patterns that we've seen before, and that is through the application dot properties file. There are specific properties that apply to one or more databases, being run against your application. Each of them being configured as a data source. Now, other frameworks, like…

Contents