This repository was archived by the owner on Dec 20, 2023. It is now read-only.
Dropwizard Template Config 1.3.0
Changelog
Features
- Environment variables and system properties are now accessible without the
env.orsys.prefixes.
So instead of writing${env.PORT}you can now just write${PORT}.
Environment variables overwrite system properties, if they have the same name.
env.andsys.are still supported for backwards compatibility and to access system properties
with special characters in their name. - Write the rendered
config.yamlto a file for debugging and testing.
UseTemplateConfigBundleConfiguration.outputPathto set the path to the file.
It is not recommended to use this in production, as it could leak sensitive information.