在Spring MVC的jsp页面中处理表单提交

时间:2013-10-09 10:55:51

标签: java spring jsp spring-mvc

我正在开发一个Spring MVC项目,我正在尝试提交一个表单并在同一个 jsp页面中处理它,以便对用户进行身份验证。

我通过调用带有ajax请求的控制器内置的Web服务来确认用户,但为了在不使用Ajax的情况下执行此操作,这次我收到此错误Request method 'POST' not supported < / p>

这是我的代码:

表格

<form action="/gethealthy/isuser" method="post">
  <input type="text" name="username" placeholder="Username" />
  <input type="password" name="password" placeholder="Password" />
  <button type="submit">Sign In</button>
</form>

JSP代码

if (request.getParameter("username") != null) {  
      HomeController aHomeController = new HomeController();
      String username = request.getParameter("username");
      String password = request.getParameter("password");
      String result = aHomeController.isUser(username, password);
      if (aHomeController.isUser(username, password)) {
        String redirectURL = "project/dashboard";
        response.sendRedirect(redirectURL);
      } else {
            out.print("Wrong credentials");
      }

1 个答案:

答案 0 :(得分:1)

你必须像这样映射你的控制器:

@RequestMapping(value="/", method = RequestMethod.POST)