gpt4 book ai didi

grails - Grails 中的 Config.groovy : environments. production.grails.serverURL

转载 作者:行者123 更新时间:2023-12-02 06:41:17 26 4
gpt4 key购买 nike

任何人都可以给出何时使用 Config.groovy 中的以下设置的具体示例吗?

// set per-environment serverURL stem for creating absolute links
environments {
production {
grails.serverURL = "http://www.changeme.com"
}
...
}

我正在寻找的是一个用例,如果不更改上述设置将会失败。

最佳答案

它被一些内置标签库使用。例如,createLink标签有一个绝对属性,可以设置:

absolute (optional) - If set to "true" will prefix the link target address with the value of the grails.serverURL property from Config, or http://localhost: if no value in Config and not running in production.

link 使用相同的属性和 createLinkTo标签,可能还有更多。

因此,如果您不更改示例中的 serverURL,则使用指定absolute=true 的内置标记创建的任何链接都可能会失败。例如,以下内容将解析为 http://www.changeme.com/ {上下文}/书

<g:link controller="book" absolute="true">Book Home</g:link>

关于grails - Grails 中的 Config.groovy : environments. production.grails.serverURL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/640296/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com