Spring MVC 如何从一个视图调用另一个视图
我在我的项目中使用 SpringMVC 和 extJS。 在dispather-servlet中: 我正在映射(welcome.htm 到welcome.java 文件)和(process.htm 到process.java)文件。 welcome.java 文件返回视图名称 hello.jsp 在 hello.jsp 中,我使用 extJS 作为 UI 组件。在 hello.jsp 中,当用户单击按钮时,我希望它将其重定向到 process.htm 以便 process.jsp 执行 我们怎样才能做到这一点,或者我不清楚问题。请告诉我
谢谢。
I am using SpringMVC and extJS for my project.
In dispather-servlet:
I am mapping (welcome.htm to welcome.java file) and (process.htm to process.java) file.
welcome.java file return view name hello.jsp In hello.jsp I am using extJS for UI components. in hello.jsp when user click a button I want it to redirect it to process.htm so that process.jsp executes
How can we do that or am I unclear about question. Please let me know
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道这是否是您的意思,但这就是您重定向的方式
在上面的示例中,所有对signin.html的POST请求都将被重定向到signin.html。
I don't know if this is what you mean, but this is how you redirect
On the example above all POST requests to signin.html will be redirected to signin.html.
如果你想绕过默认的视图解析机制(DispatcherServlet),你可以使用
.html" rel="nofollow">RedirectView,则 DispatcherServlet 将不会使用您在 UrlBasedViewResolver 或其实现类上指定的有效视图的
If you want to bypass the default view resolution mechanism(DispatcherServlet) you use the RedirectView, then DispatcherServlet will not use the normal view resolution mechanism(URL to handler,command or whateverelse)
you specify the valid views on the UrlBasedViewResolver or its implemention classes