从 c:import 内部重定向到不同页面
有什么方法可以从使用
从 JSP 调用的 Spring 控制器重定向到不同的页面吗?
场景如下:我有一个 Spring WizardFormController,它处理多页面表单并使用 JSP 和
包含到网站中。向导完成后,我想重定向到另一个页面,但这似乎从控制器上不可能。至少,如果我可以向周围的 JSP 发送消息,那就已经很有帮助了。
Is there any way I can redirect to a different page from a Spring Controller that gets called from a JSP using <c:import>
?
Scenario is as follows: I have a Spring WizardFormController, that handles a multi-page form and is included into the website using a JSP and <c:import>
. After the wizard is finished, I would like to redirect to a different page, but that seems to be impossible from the Controller. At least, if I could get a message to the surrounding JSP, it would already help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来,唯一的方法是使用 JavaScript 创建客户端重定向,如下所示:
It seems, the only way is to use JavaScript to create a client-side redirect like this: