META-INF.spring-configuration-metadata.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-dotenv Show documentation
Show all versions of spring-dotenv Show documentation
Provides a Dotenv property source for Spring and Spring Boot
{
"properties": [
{
"name": ".env.directory",
"type": "java.lang.String",
"description": "Specify the directory containing your .env file."
},
{
"name": ".env.filename",
"type": "java.lang.String",
"description": "Specify a filename other than the .env default name.",
"defaultValue": ".env"
},
{
"name": ".env.ignoreIfMalformed",
"type": "java.lang.Boolean",
"description": "Do not throw when .env entries are malformed. Malformed entries are skipped.",
"defaultValue": false
},
{
"name": ".env.ignoreIfMissing",
"type": "java.lang.Boolean",
"description": "Do not throw when .env does not exist.",
"defaultValue": true
},
{
"name": ".env.systemProperties",
"type": "java.lang.Boolean",
"description": "Load environment variables into System properties, thus making all environment variables accessible via System.getProperty(...).",
"defaultValue": false
},
{
"name": ".env.prefix",
"type": "java.lang.String",
"description": "Specify the prefix for Spring properties to make use of the .env property source.",
"defaultValue": "env."
}
]
}