根据查询字符串而不是路径名映射 struts2 操作

发布于 2024-10-10 21:42:21 字数 241 浏览 5 评论 0原文

有没有办法配置struts 2,以便调度程序将使用查询字符串来映射要调用的操作?

例如,在下面的链接中,我想调用操作 blah,而不是操作 foo。

http://domain:port/myapp/foo.do?someparameter=blah

谢谢。

Is there a way to configure struts 2, so that the dispatcher will use the querystring to map the action to invoke?

For example, in the link below, I would like to invoke action blah, not action foo.

http://domain:port/myapp/foo.do?someparameter=blah

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤独岁月 2024-10-17 21:42:21

我认为任何默认映射器都不可能做到这一点。

创建一个为您的 foo 操作配置的 Interceptor 并没有那么糟糕,该操作检查 someparameter 的值,以及链或重定向到您的 blah 操作。

I do not think that is possible with any of the default mappers.

It wouldn't be that bad to create an Interceptor that is configured for your foo action that checks the value of someparameter, and either chains or redirects to your blah action.

百善笑为先 2024-10-17 21:42:21

+1 Jeremy:如果您不想创建一个操作,只需创建一个类似调度程序的操作,它将根据查询字符串的值将您的请求分派到某些操作,

例如,

Foo action execute();

if (querystring="test") {
    setActionName("Test");
    return "next";
}

基于这些控制字符串,您可以将请求转发到某些操作。

<result name="next" type="redirectAction">${actionName}</result>

+1 Jeremy: That can do the magic else if you don't want to create an action just create a kinda dispatcher action which will dispatch your request to certain action based on the value of Query String

For e.g

Foo action execute();

if (querystring="test") {
    setActionName("Test");
    return "next";
}

Based on these control string, you can forward request to certain action.

<result name="next" type="redirectAction">${actionName}</result>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文