Spring MCV:无法处理数据输入

时间:2016-07-01 13:07:48

标签: spring jsp spring-mvc thymeleaf request-mapping

我的目标是通过处理登录名和密码来授权用户。我试图复制this example但面临问题。

我有一个实体用户类:

@DynamicUpdate
public class EntityUser
{
    String login;
    String password;

    public EntityUser() {}

    public EntityUser
    (
            String login,
            String password
        )
    {   
        this.login = login;
        this.password = password;
    }

    public String getLogin() {
        return login;
    }

    public void setLogin(String login) {
        this.login = login;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }
}

这是我的 .jsp 文件片段:

<form action="#" th:action="@{/loginCheck}" th:object="${user}" method="post">
            <table border="1" width="30%" cellpadding="3">
                <thead>
                    <tr>
                        <th colspan="2">Login Here</th>
                    </tr>
                </thead>
                <tbody>
                    <tr>
                        <td>User Name</td>
                        <td><input type="text" th:field="*{login}"/></td>
                    </tr>
                    <tr>
                        <td>Password</td>
                        <td><input type="password" th:field="*{password}"/></td>
                    </tr>
                    <tr>
                        <td><input type="submit" value="Login" /></td>
                        <td><input type="reset" value="Reset" /></td>
                    </tr>
                </tbody>
            </table>
        </form>

这是我的 Controller.java 类的片段:

@RequestMapping(value = "/loginCheck", method = RequestMethod.GET)
    public String userForm(Model model)
    {
        EntityUser user = new EntityUser();
        user.setLogin("login");
        user.setPassword("password");
        model.addAttribute("user", user);

        System.out.println(user.getLogin());
        System.out.println(user.getPassword());

        return "/loginCheck";
    }

    @RequestMapping(value = "/loginCheck", method = RequestMethod.POST)
    public String processUser(@ModelAttribute(value="user") EntityUser user)
    {

        System.out.println(user.getLogin());
        System.out.println(user.getPassword());

        loginInfo = "Jakarta";
        return "redirect:/controllers";
    }

输入值并推送&#34;提交&#34;按钮没有调用GET或POST方法(控制台中没有任何打印),页面正在移动到/#

另一方面,当我更换 form action="#"form action="/HelloSpringMVC/loginCheck", 调用POST方法,但打印的两个字符串都是&#34; null&#34;

那么,那里有什么问题?有人知道吗?

编辑: 以下是我的pom.xmlweb.xml个文件。

1 个答案:

答案 0 :(得分:0)

你的pom.xml没有spring-boot-starter-thymeleaf依赖关系,所以你的html / jsp模板中没有处理thymeleaf标签。在pom.xml中添加thymeleaf starter依赖项并重建:

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-thymeleaf</artifactId>
    </dependency>

Thymeleaf将自动在src / main / resources / templates中查找扩展名为.html的模板。您可能希望通过编辑/创建src / main / resources / application.properties并添加http://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html中定义的任何spring.thymeleaf。*应用程序属性来自定义默认值,并根据您自己的需要定制这些属性。