gpt4 book ai didi

java - 使用 app.context 时 Grails 重定向到错误的地址?

转载 作者:搜寻专家 更新时间:2023-10-31 20:30:23 25 4
gpt4 key购买 nike

当我以某种方式设置 app.context 时,我注意到 redirect 有一些奇怪的行为。我在 Grails JIRA 中发现了一个错误,它完美地描述了我的问题,但它被标记为 UTR:http://jira.grails.org/browse/GRAILS-7546


这是我对问题的描述:
我目前正在使用 Grails 2.0M2。我的 application.properties 文件中定义了以下属性:

app.context=/
app.name=foobar

当我在 Controller 中调用 redirect 时,redirect 将应用程序名称添加到我提供的 uri 中,然后导致 404。这就是我的做法这个:

String partialUrl = createLink(mapping: 'helloworld') // returns `/hello/world`
redirect(uri: partialUrl) // INCORRECTLY redirects to
// `http://mysite.com/foobar/hello/world`
// instead of `http://mysite.com/hello/world`

假设我在 UrlMappings.groovy 文件中定义了一个名为 helloworld 的 URL 映射,路径为 /hello/world

所以,长话短说,如果我将 app.context 设置为 /,我将期望 app. name 显示在我的最终重定向 URL 中。

这是错误还是预期行为?想知道无需执行太多手动步骤即可构建重定向 URL 的最简单方法吗?

最佳答案

我不想这么说,但我也无法复制它。我使用一个 Controller (名为 Hello)创建了一个测试项目,使用您的代码创建了一个除了重定向之外什么都不做的操作:

HelloController.groovy

package test1

class HelloController {
def index() {
def model = [:]
model.content = 'content...'
model
}

def redir() {
String partialUrl = createLink(mapping: 'helloworld') // returns `/hello/world`
redirect(uri: partialUrl) // INCORRECTLY redirects to
// `http://mysite.com/foobar/hello/world`
// instead of `http://mysite.com/hello/world`
}
}

我在 views/hello 中创建了一个索引页面,index.gsp

索引.gsp

<h1>index.gsp</h1>
<html>
<body>
<p>This data is coming from the model:</p>
<p>content: ${content}</p>
</body>
</html>

在 UrlMappings 中设置 helloworld 以映射到 hello Controller 的索引操作:

UrlMappings.groovy

class UrlMappings {
static mappings = {
"/helloworld"(controller: "hello", action: "index")

"/$controller/$action?/$id?"{
constraints {
// apply constraints here
}
}

"/"(view:"/index")
"500"(view:'/error')
}
}

并更改了 application.properties 以具有 app.context=/

应用程序属性

#Grails Metadata file
#Sun Nov 06 14:51:56 EST 2011
app.grails.version=2.0.0.RC1
app.context=/
app.name=test1
app.servlet.version=2.5
app.version=0.1

当我运行该应用程序时,我可以转到 localhost:8080/hello,它会显示我的简单 GSP。我尝试了 localhost:8080/helloworld 并且也按照映射的预期获得了它。然后我尝试了 localhost:8080/hello/redir,我被正确地重定向到 localhost:8080/helloworld。

但是,如果您仍然面临这个问题,我有一些建议1) 尝试使用 2.0 中可用的新链接生成器而不是 createLink。它可能没有任何不同,但值得一试:grailsLinkGenerator.link(mapping: 'helloworld')2)如果它只是来自 Controller 内部的重定向,你可以只添加 http://mysite.com将自己分配给 partialUrl。3) 最后的手段是,编写一个附加到 afterView 的过滤器,该过滤器执行正则表达式搜索并替换 mysite.com/foobar 的内容。虽然不确定这是否会捕获重定向,但如果有的话,我认为这就是它,因为过滤器可以在广泛的层面上应用。

关于java - 使用 app.context 时 Grails 重定向到错误的地址?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7987471/

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