根据查询字符串而不是路径名映射 struts2 操作
有没有办法配置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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为任何默认映射器都不可能做到这一点。
创建一个为您的
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 yourfoo
action that checks the value ofsomeparameter
, and either chains or redirects to yourblah
action.+1 Jeremy:如果您不想创建一个操作,只需创建一个类似调度程序的操作,它将根据查询字符串的值将您的请求分派到某些操作,
例如,
基于这些控制字符串,您可以将请求转发到某些操作。
+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
Based on these control string, you can forward request to certain action.