Spring2 Web MVC - 控制器的动态视图?
Spring2中有没有办法构建控制器可以重定向到的动态视图?
我有一个带有隐藏 ID 字段的表单。 如果提交表单或发生其他异常,我想重定向回表单(我已设置 formView)。它重定向正常,但是当它重定向回表单时,它会丢失 ID 参数。有什么办法可以把它放回去吗?
我知道在 Struts2 中你可以通过这样的操作结果来做到这一点:
<result name="success" type="redirect" >
<param name="location">index</param>
<param name="category">${category}</param>
<param name="pageNumber">${pageNumber}</param>
<param name="parse">true</param>
<param name="encode">true</param>
</result>
长话短说,我希望能够重定向到这样的 URL:index.htm?id=3
Is there a way in Spring2 to build dynamic views to which a Controller can redirect to?
I have a form with a hidden field for an ID.
If the form is submited or other exception occurs i want to redirect back to the form (i have set formView). It redirect ok, but when it redirect back to form it is loosing the ID parameter. Is there a way i can put it back ?
I know in Struts2 you could do this by having an action result like this:
<result name="success" type="redirect" >
<param name="location">index</param>
<param name="category">${category}</param>
<param name="pageNumber">${pageNumber}</param>
<param name="parse">true</param>
<param name="encode">true</param>
</result>
Long story short i want to be able to redirect to an URL like: index.htm?id=3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。这是 PetClinic 的一个例子:
Yes it is. Here's an example from the PetClinic: