MicroProfile Config defines a set of supported default ConfigSources for environment variables, system properties, and META-INF/microprofile-config.properties files on the classpath with specific ordinals.
SmallRye Config library
Magnolia can scan more locations for configuration properties files and uses the SmallRye Config library for implementation.
It supports passing such locations through the magnolia.config.locations configuration property, which is defined as a system or environment property.
This enables developers to build containerized images of Magnolia once, and deploy anywhere; for example, when using Docker bind mounts or Kubernetes ConfigMaps.
Setting different profiles in MicroProfile Configs
Using profile-specific property names, you can support different profiles for author and public instances.
For example, you might have different public instances for your intranet and the internet.
In the example MicroProfile configuration file below, when mp.config.profile is set to intranet, one receiver is returned: magnoliaPublic8080.
However, when set to internet, two receivers, magnoliaPublic-0 and magnoliaPublic-1, are returned.
It’s also possible to have separate configurations at the config source level.
For example, one microprofile-config.properties for properties that aren’t profiled and another microprofile-config-<PROFILE_NAME>.properties for development profile properties.
Raw view of MicroProfile Config values
To see exactly where a specific MicroProfile Config property is coming from, what precedence and values it has, see the Config info tab in the About app.
To locate a property, start typing its name in the Configuration column`s filter field:
Property injection
While Magnolia supports injecting @ConfigProperty fields into managed components, it’s not fully interoperable with the CDI specification.
Magnolia uses Google Guice for dependency injection.