Struts2 - 在浏览器中查看操作结果的真实目标网址

发布于 2024-12-23 11:26:46 字数 656 浏览 0 评论 0原文

在 Struts2 中,当从成功的操作返回时,我希望用户浏览器向用户显示他正在导航到的真实 url,而不是原始的操作调用。据我了解,我无法使用 type="redirect" 操作,因为我需要从值堆栈中提取操作结果。

比方说,例如,如果我定义一个操作来在数据库中保存新元素,然后我想让用户查看整个元素列表...:

     <action name="doSavePage" class="FbPageAdmin" method="doSavePage" >
        <result name="input">/pageadmin.jsp</result>
        <result name="error">/pageadmin.jsp</result>
        <result name="success">/pageList.jsp</result>
     </action>

如果操作成功完成,我希望用户参见mysite.com/pageList.jsp,并且不是mysite.com/doSavePage.action

这可能吗?

提前谢谢大家了!

In Struts2, when returning from a successful action, I want the user browser to show to the user the real url he is navigating into, and not the original call to action. As far as I understand, I cannot use a type="redirect" action because I need to pull the action results from the value stack.

Let's say, for example, if I define an action to save a new element in my db, and then I want to take the user to see the whole list of elements...:

     <action name="doSavePage" class="FbPageAdmin" method="doSavePage" >
        <result name="input">/pageadmin.jsp</result>
        <result name="error">/pageadmin.jsp</result>
        <result name="success">/pageList.jsp</result>
     </action>

If the action finishes successfully, I want the user to see mysite.com/pageList.jsp, and not mysite.com/doSavePage.action

Is that possible?

Thanks everybody in advance!

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

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

发布评论

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

评论(1

口干舌燥 2024-12-30 11:26:46

为什么要显示 JSP 文件名?

无论如何,我不确定我是否理解了;如果您想在添加对象后显示对象列表,请重定向到“列表”操作(和/或方法)。无论如何,您应该在 POST 之后执行重定向(重定向后获取模式),以避免在刷新时重新提交相同的表单数据。

另外,理想情况下,JSP 应该位于 /WEB-INF 下,以禁止客户端直接访问。

Why would you want to have the JSP file name shown?

In any case, I'm not sure I understand; if you want to show a listing of objects after adding one, redirect to the "list" action (and/or method). You should do a redirect after a POST anyway (the post-redirect-get pattern) to avoid resubmitting the same form data on a refresh.

Also, ideally, JSPs should live under /WEB-INF to disallow direct aclient access.

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