我想知道是否有办法将struts 2动作结果重定向到请求参数完整的servlet?
我想知道我是否可以类似https://struts.apache.org/docs/dispatcher-result.html:
<result name="success" type="dispatcher">
<param name="location">/MyServlet</param>
</result>
我想知道是否有办法将struts 2动作结果重定向到请求参数完整的servlet?
我想知道我是否可以类似https://struts.apache.org/docs/dispatcher-result.html:
<result name="success" type="dispatcher">
<param name="location">/MyServlet</param>
</result>
Struts2 旨在与 Actions 一起使用。
当使用结果重定向操作时redirectAction
,您可以传递固定数量的已知参数,动态地为它们分配名称和值。
当重定向到带有redirect
结果的 Servlet 时,您可以在 QueryString 中传递参数。
如果您想在请求中自动获取未知数量的参数并将其传递给 Servlet,您应该自己编写代码。不过你很幸运,我已经做到了。