提交表单后转发到Spring Controller中的JSP [英] Forward to JSP within Spring Controller after form submission

查看:62
本文介绍了提交表单后转发到Spring Controller中的JSP的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用Spring @Controller@RequestMapping@ModelAttribute,我想要实现一个基本的表单提交流程,在该流程中,用户将被转发到具有属性集的新JSP. Spring提供了不同的方法来实现此目的,但是我收到了很多错误.

Using Spring @Controller, @RequestMapping and @ModelAttribute, I'd like to achieve a basic form submission flow in which the user is forwarded to a new JSP with attributes set. Spring provides different ways to achieve this, but I have received various errors.

示例1 基于教程: https://www.baeldung.com/spring-mvc-form-教程

form.html

<form action="/submitForm" method="POST">
    <input type="text"id="field1" name="field1">
    <!-- other input fields -->
    <button type="submit">Submit</button>
</form>

success.jsp

<p>Thanks for signing up ${userName}!!</p>

MyController.java

@Controller
public class MyController{

    @RequestMapping(
            value = "/submitForm", 
            method = RequestMethod.POST,
            consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE)
    public String post(@ModelAttribute SignupRequest request, ModelMap model){
        // At this point, the SignupRequest is populated correctly 
        model.addAttribute("userName", request.getUserName());

        return "success";
    }
}

结果

  1. 使用return "success"-结果为找不到HTTP 404
  2. 使用return "success.jsp",结果为 HTTP 405请求方法 不支持"POST"
  3. 使用return "redirect:/success.jsp",客户端被重定向, 但未设置属性,并且$ {userName}是可见的.
  1. Using return "success" - the result is HTTP 404 Not Found
  2. Using return "success.jsp", the result is HTTP 405 Request method 'POST' not supported
  3. Using return "redirect:/success.jsp", the client is redirected, but attributes are not set, and ${userName} is visible.

示例2 根据此处接受的答案:在Spring MVC中通过POST方法重定向

Example 2 Based on the accepted answer here: Redirect after POST method in spring MVC

MyController.java

@Controller
public class MyController{

    @RequestMapping(
            value = "/submitForm", 
            method = RequestMethod.POST,
            consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE)
    public ModelAndView post(@ModelAttribute SignupRequest request){
        // At this point, the SignupRequest is populated correctly 

        ModelAndView mAV = new ModelAndView("redirect:/success.jsp");
        mAV.addObject("userName", request.getUserName());

        return mAV;
    }
}

结果 客户端被重定向,但是未设置属性,并且$ {userName}是可见的.

Result the client is redirected, but attributes are not set, and ${userName} is visible.

正确的方法是什么?

谢谢!

编辑 额外细节 将SpringBoot与嵌入式Tomcat一起使用.位于src>main>resources>public中的JSP文件.原始的JSP正在提供.我相信该项目并未像对待JSP那样对待它.添加POM部门.

EDIT Additional details Using SpringBoot with embedded Tomcat. JSP file located in src>main>resources>public. The raw JSP is being served. I believe the project is not treating JSP as it should. Adding POM deps.

    <dependencies>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-starter-tomcat</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jetty</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
        </dependency>
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <version>18.0</version>
        </dependency>
        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-email</artifactId>
            <version>1.4</version>
        </dependency>
        <dependency>
            <groupId>com.sun.xml.bind</groupId>
            <artifactId>jaxb-impl</artifactId>
            <version>2.2.11</version>
        </dependency>
        <dependency>
            <groupId>javax.xml.bind</groupId>
            <artifactId>jaxb-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.sun.xml.bind</groupId>
            <artifactId>jaxb-core</artifactId>
            <version>2.2.11</version>
        </dependency>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjrt</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-aspects</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jdbc</artifactId>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
        <dependency>
            <groupId>commons-dbcp</groupId>
            <artifactId>commons-dbcp</artifactId>
            <version>1.4</version>
        </dependency>
        <dependency>
            <groupId>org.javassist</groupId>
            <artifactId>javassist</artifactId>
            <version>3.23.1-GA</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.5</version>
        </dependency>
    </dependencies>

推荐答案

@Controller
public class MyController{

    @RequestMapping(
            value = "/submitForm", 
            method = RequestMethod.POST,
            consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE)
    public RedirectView post(@ModelAttribute SignupRequest request, RedirectAttributes ra){
        // At this point, the SignupRequest is populated correctly 

        RedirectView rw = new RedirectView();
        rw.setUrl("success.jsp");
        ra.addFlashAttribute("userName", request.getUserName());

        return rw;
    }
}

这篇关于提交表单后转发到Spring Controller中的JSP的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆