Microprofile CustomConfigSource with Database

By CDI, EJB, MicroProfile Config JSR, Tutorial No Comments
With the Microprofile-Config API there is a new and easy way to deal with configuration properties in an application. The Microprofile-Config API allows you to access config and property values form different sources like: System.getProperties() (ordinal=400) System.getenv() (ordinal=300) all META-INF/microprofile-config.properties files Developers can find a good introduction into the Microprofile…
Read More

Microprofile Config: Creating a Custom ConfigSource

By MicroProfile Config JSR, Tutorial No Comments
https://rhuanrocha.net/2018/12/21/microprofile-config-creating-a-custom-configsource/ Code First. In this post I’ll show you how to create a custom ConfigSource to read properties from an external file. This blog won't explain what Eclipse Microprofile Config is, access my last post Understanding Eclipse Microprofile Config . The Eclipse Microprofile Config provides support to read configuration properties by a…
Read More