logger:
level: DEBUG
swarm:
port:
offset: 10
---
project:
stage: development
logger:
level: DEBUG
swarm:
port:
offset: 50
---
project:
stage: production
logger:
level: INFO
swarm:
port:
offset: 100
Configuration overlays using stage properties
In some cases it may be desirable to extract some of the configuration properties and switch them depending on the target environment. Project stages are a way to move environment specific configuration properties into an external file.
project-default.yml
Default configuration is represented in an external YAML file:
Project Stage Definitions
To have separate configuration for different environments we could then have:
logger:
level: DEBUG
swarm:
port:
offset: 50
logger:
level: INFO
swarm:
port:
offset: 100
Container Bootstrap
ClassLoader cl = Main.class.getClassLoader();
URL stageConfig = cl.getResource("project-defaults.yml");
Swarm swarm = new Swarm(false)
.withStageConfig(stageConfig);
[...]
Note
|
Auto detection picks up project-defaults.yml from src/main/resources
|
Command-line switches / System Properties
Two notable command-line switches are available to easily re-configure Swarm in different environments:
System Property | Example | Purpose |
---|---|---|
swarm.project.stage |
-Dswarm.project.stage=<stage name> |
Enables a specific stage (fallback to System environment variable |
swarm.project.stage.file |
-Dswarm.project.stage.file=<URL> |
Allows to reference a different project-defaults.yml file |
Referencing Stage Configuration Values
The stage configuration properties are internally resolved to simple properties:
YAML | Internal |
---|---|
swarm: port: offset: |
swarm.port.offset |
logger: level: |
logger.level |
Internally there are three ways to get hold of stage configuration values.
-
Reference them as expressions (standalone.xml)
-
Retrieve them through
StageConfig
-
Inject them in CDI contexts
Using Expressions
The fist case is useful when you work with standalone.xml
and still need to extract environment specific properties.
In this cases you can make use of regular WildFly expressions in XML:
<subsystem xmlns="urn:jboss:domain:logging:3.0">
<console-handler name="CONSOLE">
<level name="${logger.level:INFO}"/>
<formatter>
<named-formatter name="COLOR-PATTERN"/>
</formatter>
</console-handler>
<root-logger>
<level name="${logger.level:INFO}"/>
<handlers>
<handler name="CONSOLE"/>
</handlers>
</root-logger>
[...]
</subsystem>
Here the stage configuration logger.level
is referenced using the expression syntax
${logger.level:INFO}
(INFO is the fallback value).
Using StageConfig
StageConfig
is the java type representing the former YAML file. It allows you to access named
properties following the standard java properties name syntax (i.e. logger.level
)
It is available in two places:
-
Injectable into Customizers, ArchivePreparers, etc
-
From
Swarm
The first case is intended to be used by Fraction authors if they need to hook into the stage configuration for the default configuration of a fraction itself.
The later case is intended for users to combine stage and fraction configuration in a custom Main()
:
Swarm swarm = new Swarm(false)
.withStageConfig(stageConfig);
swarm.fraction(
new DatasourcesFraction()
.jdbcDriver("h2", (d) -> {
d.driverClassName("org.h2.Driver");
d.xaDatasourceClass("org.h2.jdbcx.JdbcDataSource");
d.driverModuleName("com.h2database.h2");
})
.dataSource("ExampleDS", (ds) -> {
ds.driverName("h2");
ds.connectionUrl(
// referencing stage configuration values
swarm
.stageConfig()
.resolve("database.connection.url")
.getValue()
);
ds.userName("sa");
ds.password("sa");
})
);
In this example the datasource#connectionUrl()
is resolved from a stage configuration value.
The stage configuration is exposed through the container.