December 2019
Intermediate to advanced
314 pages
6h 51m
English
In all the examples we've created so far, we have assumed that the application configuration is picked up from the src/main/resources/application.properties file, which is the default for Quarkus applications. Nevertheless, since Quarkus fully supports the MicroProfile Config specification, it is entirely possible to load the configuration from another source, which could be an external filesystem, a database, or anything that can be loaded by a Java application!
In order to do that, you have to implement the org.eclipse.microprofile.config.spi.ConfigSource interface, which exposes a set of methods for loading properties (getProperties), retrieving the properties' names (getPropertyNames), and retrieving ...
Read now
Unlock full access