请求将一个控制器映射到另一个控制器
我希望
@RequestMapping(value = "/UpdatePassword", method = RequestMethod.GET)
public String myUpdate()
它能够转到我的另一个控制器:
@RequestMapping(value = "/", method = RequestMethod.GET)
public String getIndex(){}
并将客户端 url 更新为 www.myApp.com/
,即不是 /UpdatePassword
。
我需要在 updatepassword 控制器方法中添加什么?我们有一个视图解析器和一个拦截器,将 .jsp 或 mobile+viewname+.jsp 添加到我们的视图名称中,我们希望保留它。
I have
@RequestMapping(value = "/UpdatePassword", method = RequestMethod.GET)
public String myUpdate()
That I want that to then go to my other controller :
@RequestMapping(value = "/", method = RequestMethod.GET)
public String getIndex(){}
And update the clients url to www.myApp.com/
, ie not /UpdatePassword
.
What do I need to put in my updatepassword controller method ? We have a view resolver and an interceptor that add's .jsp, or mobile+viewname+.jsp to our view names, we want to keep this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 /UpdatePassword URI 的响应中使用
"redirect:"
前缀。You may use the
"redirect:"
prefix in the response of the /UpdatePassword URI.