Spring MVC 简单重定向控制器示例

发布于 2024-10-22 17:00:23 字数 1169 浏览 1 评论 0原文

您好,我正在尝试比较各种框架的重定向方法。

我已经完成了很多:

但是,我一直试图为 Spring MVCJSF

我想要的是一个或两个控制器来处理 /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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情话难免假 2024-10-29 17:00:23

以防万一我在 JSF 和 SPring MVC 中使用了重定向:

JSF:

  <navigation-rule>
    <from-view-id>index.xhtml</from-view-id>
    <navigation-case>
        <from-action>#{actionController.actionSubmitted}</from-action>
        <from-outcome>success</from-outcome>
        <to-view-id>index.xhtml</to-view-id>
        <redirect />
    </navigation-case>
    </navigation-rule>  

Spring-MVC 以 POST/REdirect/GET 设计模式提交用户表单:

@RequestMapping(value="/index.html", method=RequestMethod.GET)
public ModelAndView index(){
    ModelAndView mv = new ModelAndView("index");
    User user = new User();
        mv.addObject("user", user);
    return mv;
}

 @RequestMapping(value="/signin.html",method = RequestMethod.POST)
 public ModelAndView submit(@Valid User user){
    ModelAndView mv = new ModelAndView("redirect:index.html"); 
    System.out.println(user.getFirstName());
    return mv;
 }

希望它有所帮助。

Just incase I played with redirect in JSF and SPring MVC:

JSF:

  <navigation-rule>
    <from-view-id>index.xhtml</from-view-id>
    <navigation-case>
        <from-action>#{actionController.actionSubmitted}</from-action>
        <from-outcome>success</from-outcome>
        <to-view-id>index.xhtml</to-view-id>
        <redirect />
    </navigation-case>
    </navigation-rule>  

Spring-MVC submitting user form in POST/REdirect/GET design pattern:

@RequestMapping(value="/index.html", method=RequestMethod.GET)
public ModelAndView index(){
    ModelAndView mv = new ModelAndView("index");
    User user = new User();
        mv.addObject("user", user);
    return mv;
}

 @RequestMapping(value="/signin.html",method = RequestMethod.POST)
 public ModelAndView submit(@Valid User user){
    ModelAndView mv = new ModelAndView("redirect:index.html"); 
    System.out.println(user.getFirstName());
    return mv;
 }

Hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文