gpt4 book ai didi

java - struts2&IE 中长 URL 的 request.redirect()

转载 作者:行者123 更新时间:2023-12-01 05:01:24 26 4
gpt4 key购买 nike

我使用的是struts2。我必须将系统重定向到长度超过 3000 个字符的 URL。由于get方法中的url限制,url长度导致系统在IE中无法正常工作。我尝试使用请求调度程序,但我认为操作命名空间有问题。

我需要从操作 1 转发到操作 2。

行动1 Action 名称:篮子. Action 命名空间:“/mike/jordan”

行动2 Action 名称:soccer.action(有很多参数)命名空间:“/david/beckham”

到目前为止我所拥有的是

RequestDispatcher reqDispatcher = getRequest().getRequestDispatcher("/david/beckham/soccer.action");
reqDispatcher.forward(getRequest(), getResponse());

如有任何帮助,我们将不胜感激。

最佳答案

Struts2 redirect to another action

  <action name="login" class="...">
<!-- Redirect to another namespace -->
<result type="redirectAction">
<param name="actionName">dashboard</param>
<param name="namespace">/secure</param>
<param name="param1">${param1}</param>
<param name="param2">${param2}</param>
</result>
</action>

关于java - struts2&IE 中长 URL 的 request.redirect(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13346183/

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