- Config MP Guide
This guide describes how to create a sample MicroProfile (MP) project that can be used to run some basic examples using both default and custom configuration with Helidon MP.
What you need
| About 30 minutes |
| Helidon Prerequisites |
Getting started with configuration
Helidon provides a very flexible and comprehensive configuration system, offering you many application configuration choices. You can include configuration data from a variety of sources using different formats, like JSON and YAML. Furthermore, you can customize the precedence of sources and make them optional or mandatory. This guide introduces Helidon MP configuration and demonstrates the fundamental concepts using several examples. Refer to Helidon Config for the full configuration concepts documentation.
Create a sample Helidon MP project
Use the Helidon MP Maven archetype to create a simple project that can be used for the examples in this guide.
mvn archetype:generate -DinteractiveMode=false \
-DarchetypeGroupId=io.helidon.archetypes \
-DarchetypeArtifactId=helidon-quickstart-mp \
-DarchetypeVersion=1.4.12 \
-DgroupId=io.helidon.examples \
-DartifactId=helidon-quickstart-mp \
-Dpackage=io.helidon.examples.quickstart.mphelidon-quickstart-mp directory:cd helidon-quickstart-mpConfiguration Formats
Helidon configuration sources can use different formats for the configuration data. You can specify the format on a per-source bases, mixing and matching formats as required. Here are the supported formats, each with the extension name you should use. By default, Helidon will determine the media type based on the extension name.
Java Property (.properties)
JSON (.json)
YAML (.yaml)
HOCON (.conf)
The remainder of this document will use these formats in examples and show you how to configure Helidon to parse them.
Default configuration
Helidon has an internal configuration, so you are not required to provide any configuration data for your application, though in practice you most likely would. By default, that configuration can be overridden from three sources: system properties, environment variables, and the contents of META-INF/microprofile-config.properties. For example, if you specify a custom server port in META-INF/microprofile-config.properties then your server will listen on that port.
In your application code, Helidon uses the default configuration when you create a Server object without a custom Config object. See the following code from the project you created.
Main.startServer: static Server startServer() {
return Server.create().start();
}- There is no
Configobject being used during server creation, so the default configuration is used.
Source precedence for default configuration
In order to properly configure your application using configuration sources, you need to understand the precedence rules that Helidon uses to merge your configuration data. By default, Helidon will use the following sources in precedence order:
- Java system properties
- Environment variables
- Properties specified in
META-INF/microprofile-config.properties
Each of these sources specify configuration properties in Java Property format (key/value), like color=red. If any of the Helidon required properties are not specified in one of these source, like server.port, then Helidon will use a default value.
Because environment variable names are restricted to alphanumeric characters and underscore, Helidon adds aliases to the environment configuration source, allowing entries with dotted and/or hyphenated keys to be overriden. For example, this mapping allows an environment variable named "APP_GREETING" to override an entry key named "app.greeting". In the same way, an environment variable named "APP_dash_GREETING" will map to "app-greeting". See Advanced Config for more information.
The following examples will demonstrate the default precedence order.
Default configuration resource
Change a configuration parameter in the default configuration resource file, META-INF/microprofile-config.properties. There are no environment variable or system property overrides defined.
app.greeting in the META-INF/microprofile-config.properties from Hello to HelloFromMPConfig:app.greeting=HelloFromMPConfigmvn package -DskipTests=true
java -jar target/helidon-quickstart-mp.jarcurl http://localhost:8080/greet
...
{
"message": "HelloFromMPConfig World!"
}- The new
app.greetingvalue inMETA-INF/microprofile-config.propertiesis used.
Environment variable override
An environment variable has a higher precedence than the configuration properties file.
export APP_GREETING=HelloFromEnvironment
java -jar target/helidon-quickstart-mp.jarcurl http://localhost:8080/greet
...
{
"message": "HelloFromEnvironment World!"
}- The environment variable took precedence over the value in
META-INF/microprofile-config.properties.
System property override
A system property has a higher precedence than environment variables.
app.greeting environment variable is still set:java -Dapp.greeting="HelloFromSystemProperty" -jar target/helidon-quickstart-mp.jarcurl http://localhost:8080/greet
...
{
"message": "HelloFromSystemProperty World!"
}- The system property took precedence over both the environment variable and
META-INF/microprofile-config.properties.
Custom configuration sources
To use custom configuration sources, your application needs to use a Config object when creating a Server object. When you use a Config object, you are in full control of all configuration sources and precedence. By default, the environment variable and system property sources are enabled, but you can disable them using the disableEnvironmentVariablesSource and disableSystemPropertiesSource methods.
This section will show you how to use a custom configuration with various sources, formats, and precedence rules.
Full list of configuration sources
Here is the full list of external config sources that you can use programmatically.
- Java system properties - the property is a name/value pair.
- Environment variables - the property is a name/value pair.
- Resources in the classpath - the contents of the resource is parsed according to its inferred format.
- File - the contents of the file is parsed according to its inferred format.
- Directory - each non-directory file in the directory becomes a config entry: the file name is the key. and the contents of that file are used as the corresponding config String value.
- A URL resource - contents is parsed according to its inferred format.
You can also define custom sources, such as Git, and use them in your Helidon application. See Advanced Config for more information.
Classpath sources
The first custom resource example demonstrates how to add a second internal configuration resource that is discovered in the classpath. The code needs to build a Config object, which in turn is used to build the Server object. The Config object is built using a Config.Builder, which lets you inject any number of sources into the builder. Furthermore, you can set precedence for the sources. The first source has highest precedence, then the next has second highest, and so forth.
config.properties to the resources directory with the following contents:app.greeting=HelloFrom-config.propertiesMain class; 1) Add new imports, 2) Replace the startServer method, and 3) Add buildConfig method:import io.helidon.config.Config;
import static io.helidon.config.ConfigSources.classpath;
...
static Server startServer() {
return Server.builder()
.config(buildConfig())
.build()
.start();
}
private static Config buildConfig() {
return Config.builder()
.disableEnvironmentVariablesSource()
.sources(
classpath("config.properties"),
classpath("META-INF/microprofile-config.properties"))
.build();
}- Import config classes.
- Pass the custom
Configobject to theServer.Builder. - Disable the environment variables as a source.
- Specify the new config.properties resource that is in the
classpath. - You must specify the existing
META-INF/microprofile-config.propertiesor Helidon will not use it as a configuration source even though it is considered a default source.
curl http://localhost:8080/greet
...
{
"message": "HelloFrom-config.properties World!"
}- The greeting was picked up from
config.properties, overriding the value inMETA-INF/microprofile-config.properties.
It is important to remember that configuration from all sources is merged internally. If you have the same configuration property in multiple sources, then only the one with highest precedence will be used at runtime. This is true even the same property comes from sources with different formats.
Swap the source order and run the test again.
Main class and replace the buildConfig method: private static Config buildConfig() {
return Config.builder()
.disableEnvironmentVariablesSource()
.sources(
classpath("META-INF/microprofile-config.properties"),
classpath("config.properties"))
.build();
}- Swap the source order, putting
META-INF/microprofile-config.propertiesfirst.
curl http://localhost:8080/greet
...
{
"message": "HelloFromMPConfig World!"
}- The file
META-INF/microprofile-config.propertieswas used to get the greeting since it now has precedence overconfig.properties.
External file sources
You can move all or part of your configuration to external files, making them optional or mandatory. The obvious advantage to this approach is that you do not need to rebuild your application to change configuration. In the following example, the app.greeting configuration property will be added to config-file.properties.
disableEnvironmentVariablesSource doesn’t need to be called:unset APP_GREETINGconfig-file.properties in the helidon-quickstart-mp directory with the following contents:app.greeting=HelloFromConfigFileMain class; 1) Add new import and 2) Replace the buildConfig method:import static io.helidon.config.ConfigSources.file;
...
private static Config buildConfig() {
return Config.builder()
.sources(
file("config-file.properties"),
classpath("META-INF/microprofile-config.properties"))
.build();
}- Add a mandatory configuration file.
curl http://localhost:8080/greet
...
{
"message": "HelloFromConfigFile World!"
}- The configuration property from the file
config-file.propertiestakes precedence.
If you want the configuration file to be optional, you must use the optional method with sources, otherwise Helidon will generate an error during startup as shown below. This is true for both file and classpath sources. By default, these sources are mandatory.
Main class and replace the buildConfig method: private static Config buildConfig() {
return Config.builder()
.sources(
file("missing-file"),
classpath("META-INF/microprofile-config.properties"))
.build();
}- Specify a file that doesn’t exist.
Exception in thread "main" io.helidon.config.ConfigException: Cannot load data from mandatory source FileConfig[missing-file]. File `missing-file` not found.To fix this, use the optional method as shown below, then rerun the test.
...
file("missing-file").optional(), - The
missing-fileconfiguration file is now optional.
Directory source
A directory source treats every file in the directory as a key, and the file contents as the value. The following example includes a directory source as highest precedence.
helidon-quickstart-mp/conf then create a file named app.greeting in that directory with the following contents:HelloFromFileInDirectoryConfMain class; 1) Add new import and 2) Replace the buildConfig method:import static io.helidon.config.ConfigSources.directory;
...
private static Config buildConfig() {
return Config.builder()
.sources(
directory("conf"),
classpath("config.properties").optional(),
classpath("META-INF/microprofile-config.properties"))
.build();
}- Add a mandatory configuration directory.
curl http://localhost:8080/greet
...
{
"message": "HelloFromFileInDirectoryConf World!"
}- The greeting was fetched from the file named
app.greeting.
Exceeding three sources
If you have more than three sources, you need to use a ConfigSources class to create a custom source list as shown below.
Main class; 1) Add new import and 2) Replace the buildConfig method:import io.helidon.config.ConfigSources;
...
private static Config buildConfig() {
return Config.builder()
.sources(ConfigSources.create(
directory("conf"),
file("config-file.properties"),
classpath("config.properties").optional(),
classpath("META-INF/microprofile-config.properties")))
.build();
}- Create a list of four sources using
ConfigSources.createmethod.
curl http://localhost:8080/greet
...
{
"message": "HelloFromFileInDirectoryConf World!"
}Meta-configuration
Instead of directly specifying the configuration sources in your code, you can use meta-configuration in a file that declares the configuration sources and their attributes. This requires using the Config.loadSourcesFrom method rather than a Config.Buider object. The contents of the meta-configuration file needs to be in JSON, YAML, or HOCON format. YAML is used in the following example.
meta-config.yaml in the helidon-quickstart-mp directory with the following contents:sources:
- type: "classpath"
properties:
resource: "META-INF/microprofile-config.properties" - The source type.
- The name of the mandatory configuration resource.
Main class and replace the buildConfig method: private static Config buildConfig() {
return Config.loadSourcesFrom( file("meta-config.yaml"));
}- Specify the meta-configuration file, which contains a single configuration source.
curl http://localhost:8080/greet
...
{
"message": "HelloFromMPConfig World!"
}- The
META-INF/microprofile-config.propertiesresource file was used to get the greeting.
The source precedence order in a meta-configuration file is the order of appearance in the file. This is demonstrated below where the config-file.properties has highest precedence.
meta-config.yaml file:sources:
- type: "file"
properties:
path: "./config-file.properties"
- type: "classpath"
properties:
resource: "META-INF/microprofile-config.properties"
- type: "file"
properties:
path: "optional-config-file"
optional: true - The source type specifies a file.
- The name of the mandatory configuration file.
- Specify that the
optional-config-filefile is optional.
curl http://localhost:8080/greet
...
{
"message": "HelloFromConfigFile World!"
}- The
config-file.propertiessource now takes precedence.
When using a meta-config file, you need to explicitly include both environment variables and system properties as a source if you want to use them.
meta-config.yaml file:sources:
- type: "environment-variables"
- type: "system-properties"
- type: "classpath"
properties:
resource: "META-INF/microprofile-config.properties"
- type: "file"
properties:
path: "./config-file.properties"- Environment variables are now used as a source.
- System properties are now used as a source.
You can re-run the previous tests that exercised environment variables and system properties. Swap the two types to see the precedence change. Be sure to unset APP_GREETING after you finish testing.
Accessing Config within an application
You have used Helidon to customize configuration behavior from your code using the Config and Config.Builder classes. The examples in this section will demonstrate how to access that config data at runtime. As discussed previously, Helidon reads configuration from a config source, which uses a config parser to translate the source into an immutable in-memory tree representing the configuration’s structure and values. Your application uses the Config object to access the in-memory tree, retrieving config data.
The generated project already accesses configuration data in the GreetingProvider class as follows:
GreetingProvider.java:@ApplicationScoped
public class GreetingProvider {
private final AtomicReference<String> message = new AtomicReference<>();
@Inject
public GreetingProvider(@ConfigProperty(name = "app.greeting") String message) {
this.message.set(message);
}
String getMessage() {
return message.get();
}
void setMessage(String message) {
this.message.set(message);
}
}- This class is application scoped so a single instance of
GreetingProviderwill be shared across the entire application. - Define a thread-safe reference that will refer to the message member variable.
- The value of the configuration property
app.greetingis injected into theGreetingProvider. constructor as aStringparameter namedmessage.
Injecting at field level
You can inject configuration at the field level as shown below. Use the volatile keyword since you cannot use AtomicReference with field level injection.
meta-config.yaml with the following contents:sources:
- type: "classpath"
properties:
resource: "META-INF/microprofile-config.properties" - This example only uses the default classpath source.
GreetingProvider.java:@ApplicationScoped
public class GreetingProvider {
@Inject
@ConfigProperty(name = "app.greeting")
private volatile String message;
String getMessage() {
return message;
}
void setMessage(String message) {
this.message = message;
}
}- Inject the value of
app.greetinginto theGreetingProviderobject. - Define a class member variable to hold the greeting.
curl http://localhost:8080/greet
...
{
"message": "HelloFromMPConfig World!"
}Injecting the Config object
You can inject the Config object into the class and access it directly as shown below. This object is not initialized when the GreetingProvider constructor is called, so you need to provide a method (onStartup) that observes @Initialized. This method will be called when GreetingProvider is ready for use.
GreetingProvider.java file; 1) Add new imports and 2) Replace the GreetingProvider class:
import io.helidon.config.Config;
import javax.enterprise.context.Initialized;
import javax.enterprise.event.Observes;
...
@ApplicationScoped
public class GreetingProvider {
private final AtomicReference<String> message = new AtomicReference<>();
@Inject
Config config;
public void onStartUp(@Observes @Initialized(ApplicationScoped.class) Object init) {
message.set(config.get("app.greeting").asString().get());
}
String getMessage() {
return message.get();
}
void setMessage(String message) {
this.message.set(message);
}
}- Add three new imports.
- Inject the
Configobject into theGreetingProviderobject. - Get the
app.greetingvalue from theConfigobject and set the member variable.
curl http://localhost:8080/greet
...
{
"message": "HelloFromMPConfig World!"
}Navigating the Config tree
Helidon offers a variety of methods to access in-memory configuration. These can be categorized as key access or tree navigation. You have been using key access for all of the examples to this point. For example app.greeting is accessing the greeting child node of the app parent node. There are many options for access this data using navigation methods as described in Hierarchical Config and Advanced Config. This simple example below demonstrates how to access a child node as a detached configuration sub-tree.
config-file.yaml in the helidon-quickstart-mp directory and add the following contents:app:
greeting:
sender: Joe
message: Hello-from-config-file.yamlmeta-config.yaml with the following contents:sources:
- type: "classpath"
properties:
resource: "META-INF/microprofile-config.properties"
- type: "file"
properties:
path: "./config-file.yaml"GreetingProvider class with the following code:@ApplicationScoped
public class GreetingProvider {
private final AtomicReference<String> message = new AtomicReference<>();
private final AtomicReference<String> sender = new AtomicReference<>();
@Inject
Config config;
public void onStartUp(@Observes @Initialized(ApplicationScoped.class) Object init) {
Config appNode = config.get("app.greeting");
message.set(appNode.get("message").asString().get());
sender.set(appNode.get("sender").asString().get());
}
String getMessage() {
return sender.get() + " says " + message.get();
}
void setMessage(String message) {
this.message.set(message);
}
}- Get the configuration subtree where the
app.greetingnode is the root. - Get the value from the
messageConfignode. - Get the value from the
senderConfignode.
curl http://localhost:8080/greet
...
{
"message": "Joe says Hello-from-config-file.yaml World!"
}Integration with Kubernetes
The following example uses a Kubernetes ConfigMap to pass the configuration data to your Helidon application deployed to Kubernetes. When the pod is created, Kubernetes will automatically create a local file within the container that has the contents of the configuration file used for the ConfigMap. This example will create the file at /etc/config/config-file.properties.
Main class and replace the buildConfig method: private static Config buildConfig() {
return Config.builder()
.sources(
file("/etc/config/config-file.properties").optional(),
classpath("META-INF/microprofile-config.properties"))
.build();
}- The
app.greetingvalue will be fetched from/etc/config/config-file.propertieswithin the container. - The server port is specified in
META-INF/microprofile-config.propertieswithin thehelidon-quickstart-mp.jar.
GreetingProvider.java:@ApplicationScoped
public class GreetingProvider {
@Inject
@ConfigProperty(name = "app.greeting")
private volatile String message;
String getMessage() {
return message;
}
void setMessage(String message) {
this.message = message;
}
}curl http://localhost:8080/greet
...
{
"message": "HelloFromConfigFile World!"
}docker build -t helidon-config-mp .config-file.properties:kubectl create configmap helidon-configmap --from-file config-file.propertieskubectl get configmap helidon-configmap -o yaml
...
apiVersion: v1
data:
config-file.properties: |
app.greeting=HelloFromConfigFile
kind: ConfigMap
...- The file
config-file.propertieswill be created within the Kubernetes container. - The
config-file.propertiesfile will have this single property defined.
k8s-config.yaml, with the following contents:kind: Service
apiVersion: v1
metadata:
name: helidon-config
labels:
app: helidon-config
spec:
type: NodePort
selector:
app: helidon-config
ports:
- port: 8080
targetPort: 8080
name: http
---
kind: Deployment
apiVersion: extensions/v1beta1
metadata:
name: helidon-config
spec:
replicas: 1
template:
metadata:
labels:
app: helidon-config
version: v1
spec:
containers:
- name: helidon-config
image: helidon-config-mp
imagePullPolicy: IfNotPresent
ports:
- containerPort: 8080
volumeMounts:
- name: config-volume
mountPath: /etc/config
volumes:
- name: config-volume
configMap:
# Provide the name of the ConfigMap containing the files you want
# to add to the container
name: helidon-configmap - A service of type
NodePortthat serves the default routes on port8080. - A deployment with one replica of a pod.
- Mount the ConfigMap as a volume at
/etc/config. This is where Kubernetes will createconfig-file.properties. - Specify the ConfigMap which contains the configuration data.
kubectl apply -f ./k8s-config.yamlkubectl get service/helidon-configNAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
helidon-config NodePort 10.99.159.2 <none> 8080:31143/TCP 8s - A service of type
NodePortthat serves the default routes on port31143.
31143, your port will likely be different:curl http://localhost:31143/greet
...
{
"message": "HelloFromConfigFile World!"
}- The greeting value from
/etc/config/config-file.propertieswithin the container was used.
You can now delete the Kubernetes resources that were just created during this example.
kubectl delete -f ./k8s-config.yaml
kubectl delete configmap helidon-configmapSummary
This guide has demonstrated how to use basic Helidon configuration features. The full configuration documentation, starting with the introduction section at Helidon Config has much more information including the following:
Architecture
Parsers
Extensions
Filters
Hierarchical Access
Property Mapping
Mutability Support
and more…
Refer to the following references for additional information:
MicroProfile Config specification at https://github.com/eclipse/microprofile-config/releases/tag/1.3
MicroProfile Config Javadoc at https://javadoc.io/doc/org.eclipse.microprofile.config/microprofile-config-api/1.3
Helidon Javadoc at https://helidon.io/docs/latest/apidocs/index.html?overview-summary.html