这是我面临的错误的屏幕截图。
问题是忘记密码再次附加在 URL 中。(参见附件图像的地址栏)
我的控制器如下:
@Controller
@RequestMapping(value="/forgot-password")
public class ControllerForgotPassword {
@RequestMapping(value = "/email", method = RequestMethod.POST)
public ModelAndView sendMail(HttpServletRequest request) {
String email = (String) request.getParameter("email");
boolean flag=serviceForgotPassword.checkEmail(email);
ModelAndView modelAndView = new ModelAndView();
if(flag)
{
modelAndView.addObject("message", "Mail has been sent to your mail box");
modelAndView.setViewName("forgot-password-sucess");
return modelAndView;
}
else
{
modelAndView.addObject("message", "Please Enter Valid email address");
modelAndView.setViewName("forgot-password");
return modelAndView;
}
}
}
forgot-password.jsp内容如下:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="fmt"
uri="http://java.sun.com/jsp/jstl/fmt" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Forgot-Password</title>
</head>
<body>
<p style="color:red;">${message}</p>
<form action="forgot-password/email" method="POST">
<input type="text" name="email"/>
<input type="submit" value="Send Mail">
</form>
</body>
</html>
我曾尝试modelAndView.setViewName("redirect:/forgot-password-sucess");
在该sendMail
方法中使用,但随后我无法接收来自控制器的消息。
编辑 :
如果我添加<form action="/CabFMS/forgot-password/email" method="POST">
这是我的上下文/项目名称,那么它可以正常工作。
我是否需要在 from 操作中随处添加上下文名称以及控制器映射?
我不能只forgot-password/email
在表单操作中使用吗?
请帮忙。
问候,
阿伦