문제

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