在我的Grails配置文件中有三个类似的环境块:
environments {
production {
grails.serverURL = "https://www.mysite.com"
}
development {
grails.serverURL = "http://localhost:8080/${appName}"
}
test {
grails.serverURL = "http://localhost:8080/${appName}"
}
}
... // more code
environments {
production {
authnet.apiId = "123456"
authnet.testAccount = "false"
}
development {
authnet.apiId = "654321"
authnet.testAccount = "true"
}
test {
authnet.apiId = "654321"
authnet.testAccount = "true"
}
}
... // more code
environments {
production {
email.sales = 'sales@mysite.com'
}
development {
email.sales = 'test@mysite.com'
}
test {
email.sales = 'test@mysite.com'
}
}
在某个控制器中:
println grailsApplication.config.grails.serverURL
println grailsApplication.config.authnet.apiId
println grailsApplication.config.email.sales
输出:
http://localhost:8080/myapp
[:]
test@mysite.com
因此,由于某些原因,应用程序无法从某些环境块中获取数据。环境块之外的东西很好。我注意到这个问题与几个不同的应用程序,不同的配置等。尝试使用grailsApplication和ConfigurationHolder来获取它。是Grails bug还是我做错了什么?我运行的是Grails 1.3.6
您多次重新定义配置信息。由于编写的是执行的groovy代码,而不是XML配置,因此更改不会自动合并,多个配置块会相互覆盖。您需要在一个块中定义所有内容,例如
environments {
development {
grails.serverURL = "http://localhost:8080/${appName}"
authnet.apiId = "654321"
authnet.testAccount = "true"
}
test {
grails.serverURL = "http://localhost:8080/${appName}"
authnet.apiId = "654321"
authnet.testAccount = "true"
}
production {
grails.serverURL = "https://www.mysite.com"
authnet.apiId = "123456"
authnet.testAccount = "false"
}
您正在使用开发环境运行,因此您正在从开发设置中选择主机和端口。默认情况下
grails run-app
使用开发环境运行应用程序。要在生产环境中运行它,可以使用命令grails war
构建war文件,并将其部署到servlet容器中,或者使用:
grails prod run-app
参见http://www.grails.org/Environments获取更多信息。