Good afternoon.
I feel a little bit confused about the last sentence "MicroProfile properties need to be declared in one of the Payara defined config sources"...
I've declared the property "db_host=localhost" in the file microprofile-config.properties but this property doesn't seem loaded/resolved using it in web.xml.
However, I can load this property injecting the property in a bean (with @Inject @ConfigProperty(name="db_host")) and it works.
I've also followed the documentation and created a microprofile config property using the command asadmin set-config-property and the value is now resolved in the web.xml !
So, my question is : Is it possible to use a property defined in the file microprofile-config.properties in web.xml (a data-source for e.g.) or is it necessary to declare these properties using asadmin set-config-property command line ?
Thanks for your advises.