我想为每个环境制作一个配置文件,所以我添加到Config.groovy
:
grails.config.locations = [
"file:conf/${InetAddress.getLocalHost().getHostName()}.groovy",
"classpath:${Environment.current.name}.groovy"
]
这在本地工作正常,但在使用war -Dgrails.env=stage
构建WAR文件时,它无法正常工作。我使用的是Grails 2.5.6。
如何在单个文件中排除环境配置?