新手问题,
将其用于web应用程序。我正在寻找一种工具,可以帮助我为不同的环境构建和部署Grails应用程序(类似于Ant),而不会失去"编辑>保存>刷新"的开发风格。
如果你想要环境变量,只需像这样添加属性:
environments {
production {
grails.serverURL = "http://www.changeme.com"
grails.dbconsole.enabled = true
grails.dbconsole.urlRoot = '/admin/dbconsole'
}
development {
grails.serverURL = "http://localhost:8080/${appName}"
}
test {
grails.serverURL = "http://localhost:8080/${appName}"
}
}
然后像这样获取变量:
${grailsApplication.config.grails.serverURL}
切换环境,使用以下命令:
grails run-app // runs with the default "development" data source
grails dev run-app // runs with the "development" data source
grails run-war // runs with the production data source
grails -Dgrails.env=mycustomenv run-app // specific a custom environment
grails test run-app // runs with the test data source
文档。