7u4 / spring-dotenv

Provides a Dotenv property source for Spring

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🗝 spring-dotenv

CI CD Maven Central GitHub GitHub stars

Breaking changes in version 3

  • The env. prefix is no longer default. It is now expected that you provide no prefix in your configuration files.
  • By default the .env contents and the contents of the system enviroment are loaded into Java system properties.
  • The property source is loaded earlier into the Spring lifecycle allowing dotenv to be effective before the application context is ready.

Provides a Spring PropertySource that delegates to the excellent dotenv-java library.

Storing configuration in the environment is one of the tenets of a twelve-factor app. Anything that is likely to change between deployment environments – such as resource handles for databases or credentials for external services – should be extracted from the code into environment variables.

It is not always practical to set environment variables on development machines or continuous integration servers. Dotenv loads variables from a .env file for your convenience during development.

Installation

... but first!

Add this to .gitignore

### Local Configuration ###
.env

Loading environment variables from the .env is for your development convenience and the file should not be committed to source control.

It is common, however, to commit a .env.example file to source control which documents the available variables and gives developers an understanding of how to create their own local .env file.

Maven

<dependency>
  <groupId>me.paulschwarz</groupId>
  <artifactId>spring-dotenv</artifactId>
  <version>{version}</version>
</dependency>

Gradle

implementation "me.paulschwarz:spring-dotenv:${version}"

Maven and Gradle

Installation instructions

Usage

Refer to the demo applications.

Imagine a simple application which outputs "Hello, example.name". We can use Spring to load the property example.name from an application.properties file or an application.yml file.

Now imagine we want to extract that example.name so that it is loaded from the environment instead of hard-coded into application.properties.

If a value for example.name is set in the environment, we certainly want to use that value. However, for your convenience during development, you may declare that value in a .env file and it will be loaded from there. It is important to understand the precedence; a variable set in the environment will always override a value set in the .env file.

Spring provides different ways to read properties. This example uses the @Value annotation, but feel free to use whichever techniques suit your case.

@Value("${example.name}")
String name;

With Spring, you may provide properties in a .properties file or a .yml file.

Add to application.yml

example:
  name: ${EXAMPLE_NAME}

or with a default value of "World"

example:
  name: ${EXAMPLE_NAME:World}

And of course, a .properties file works too

example.name = ${EXAMPLE_NAME:World}

At this point, we've told Spring to load the value example.name from the environment. It must be supplied, otherwise you will get an exception.

Now create a .env file

EXAMPLE_NAME=Paul

This file is yours and does not belong in source control. Its entire purpose is to allow you to set environment variables locally in your development environment.

Now set the variable in the environment and notice that it has higher precedence than the value set in the .env file.

export EXAMPLE_NAME=World

Configuration (optional)

This library supports the same configuration values as the underlying dotenv-java configuration. Configuration is completely optional, however if you need to override defaults, you may do so by adding the following to .env.properties:

directory=<string>
filename=<string>
ignoreIfMalformed=<boolean>
ignoreIfMissing=<boolean>
systemProperties=<boolean>
prefix=<string>

By default, this library sets ignoreIfMissing to true. You may change this behaviour as follows:

ignoreIfMissing=false

Prior to version 3, the library expected properties to be prefixed with env.. The default behaviour going forward is to not use a prefix. If you require a prefix, then you can provide one like this:

prefix=env.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Acknowledgements

Laravel Configuration for a great example of integrating dotenv with a framework.
The dotenv libraries for Ruby and Java.
Spring Boot's RandomValuePropertySource for an example of a custom property source.
Michał Bychawski for help putting this together.
Dan Zheng for contributing sample applications.

About

Provides a Dotenv property source for Spring

License:MIT License


Languages

Language:Java 99.5%Language:Shell 0.5%