Вопрос

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