DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Multithreading in Modern Java: Advanced Benefits and Best Practices
  • Optimizing Java Applications for Arm64 in the Cloud
  • JPlus: A Modern Java Superset Language
  • Monitoring Java Microservices on EKS Using New Relic APM and Kubernetes Metrics

Trending

  • Advanced Error Handling and Retry Patterns in Enterprise REST Integrations
  • Observability for Agents and Workflows: Tracing Prompts, Tool Calls, and Business Outcomes End-to-End
  • Identity in Action
  • 7 Technology Waves I’ve Seen in 30 Years of Software — Will AI Be the Next Real Transformation?
  1. DZone
  2. Coding
  3. Java
  4. dotenv for Java and the JVM

dotenv for Java and the JVM

Wish configuring your microservices was easy? Well, while it started with Ruby, dotenv has a Java port that brings configuration into a single method.

By 
Carmine DiMascio user avatar
Carmine DiMascio
·
Jan. 03, 18 · Tutorial
Likes (14)
Comment
Save
Tweet
Share
45.2K Views

Join the DZone community and get the full member experience.

Join For Free

When working within the context of a modern microservice architecture, one often encounters services written in a variety of languages using a variety of frameworks. There are numerous benefits to microservice architectures, however, configuring each service can be quite complex. Each framework may offer their own configuration method, e.g. property files, YAML, JSON, etc. As the number of microservices piles up, this quickly becomes a DevOps nightmare.

To avoid this problem, we need a single method for configuration. Fortunately, there is one, dotenv, and most languages already offer a port. dotenv is a library originating from the Ruby community. It offers a simple, consistent, 12-factor compliant method to configure an application using environment variables.

The dotenv Ruby project describes it as such:

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.
But it is not always practical to set environment variables on development machines or continuous integration servers where multiple projects are run. dotenv loads variables from an   .env file into ENV when the environment is bootstrapped.

Ultimately, by choosing dotenv, we can ensure the configuration of all of our microservices is handled in exactly the same way! This includes those running in our development, test, staging, and production environments. Just provide a new `.env` file (or simply rely on the host’s existing environment variables).

As noted, most languages now offer such a port. Here are some:

  • Node.js https://github.com/motdotla/dotenv
  • Go https://github.com/joho/godotenv
  • Python https://github.com/theskumar/python-dotenv
  • Ruby (the trailblazer) https://github.com/bkeepers/dotenv
  • Java https://github.com/cdimascio/java-dotenv

This post focuses on Java and JVM languages, so let’s see java-dotenv in action. (Note: java-dotenv also offers a Kotlin DSL).

Here goes:

Create a .env file in the root of your project (environment variables defined in the host environment override those in .env):

 # formatted as key=value
 MY_ENV_VAR1=some_value
 MY_EVV_VAR2=some_value


Using Java, initialize dotenv with its defaults and fetch an env var:

import io.github.cdimascio.dotenv.Dotenv;
Dotenv dotenv = Dotenv.load();
dotenv.get(“MY_ENV_VAR1”);


Or, using Kotlin, initialize dotenv with its defaults and fetch an env var:

import io.github.cdimascio.dotenv.dotenv
val dotenv = dotenv()
dotenv[“MY_ENV_VAR1”]


To customize the dotenv configuration with Java, specify some options:

Dotenv dotenv = Dotenv.configure()
  .directory("./some/path")
  .ignoreIfMalformed()
  .ignoreIfMissing()
  .load();


Or with Kotlin, use the DSL to configure dotenv’s options:

val dotenv = dotenv {
  directory = "./some/path"
  ignoreIfMalformed = true
  ignoreIfMissing = true
}


For more usage details, visit https://github.com/cdimascio/java-dotenv

Installation

Maven:

<dependency>
    <groupId>io.github.cdimascio</groupId>
    <artifactId>java-dotenv</artifactId>
    <version>3.0.0</version>
</dependency>


Gradle:

compile 'io.github.cdimascio:java-dotenv:3.0.0'


For more information, API docs, FAQ, and more, visit https://github.com/cdimascio/java-dotenv.

Java (programming language) Java virtual machine

Opinions expressed by DZone contributors are their own.

Related

  • Multithreading in Modern Java: Advanced Benefits and Best Practices
  • Optimizing Java Applications for Arm64 in the Cloud
  • JPlus: A Modern Java Superset Language
  • Monitoring Java Microservices on EKS Using New Relic APM and Kubernetes Metrics

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook