Skip to content
This repository was archived by the owner on Dec 20, 2023. It is now read-only.

Dropwizard Template Config 1.3.0

Choose a tag to compare

@tkrille tkrille released this 21 May 20:18
· 23 commits to master since this release

Changelog

Features

  • Environment variables and system properties are now accessible without the env. or sys. 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. and sys. are still supported for backwards compatibility and to access system properties
    with special characters in their name.
  • Write the rendered config.yaml to a file for debugging and testing.
    Use TemplateConfigBundleConfiguration.outputPath to set the path to the file.
    It is not recommended to use this in production, as it could leak sensitive information.