Spring MVC 简单重定向控制器示例
您好,我正在尝试比较各种框架的重定向方法。
我已经完成了很多:
但是,我一直试图为 Spring MVC 和 JSF。
我想要的是一个或两个控制器来处理 /index 和 /redirect url,其中 /index 只是链接到 /redirect,而 /redirect 使用 301 重定向重定向回 /index。
我发现这个文档,我只是没有毅力弄清楚如何在 Spring MVC 中创建这个看似简单的示例。
谢谢!
Hi I'm trying to compare the redirect methods of various frameworks.
I've made it through quite a few:
However I'm stuck trying to create the simplest example possible for Spring MVC and JSF.
What I want is either one or two controllers which handle the /index and /redirect urls where /index simply links to /redirect, and /redirect uses a 301 redirect to redirect back to /index.
I found this documentation, I just don't have the persistence to figure out how to create this seemingly simple example in Spring MVC.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以防万一我在 JSF 和 SPring MVC 中使用了重定向:
JSF:
Spring-MVC 以 POST/REdirect/GET 设计模式提交用户表单:
希望它有所帮助。
Just incase I played with redirect in JSF and SPring MVC:
JSF:
Spring-MVC submitting user form in POST/REdirect/GET design pattern:
Hope it helps.