i have code in config.groovy

def ENV_NAME = "/home/myFolder"

if(System.getenv("ENV_NAME")) {
    println( "Including configuration file: " + System.getenv("ENV_NAME"));
    grails.config.locations << "file:" + System.getenv("ENV_NAME")
} else {
    println "No external configuration file defined."
}

When I run, the result is "No external configuration file defined." What do I miss?

有帮助吗?

解决方案

Presumably that there isn't an environment variable named ENV_NAME defined at the point when you ran the app.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top