これが私が直面しているエラーのスクリーンショットです。
問題は、パスワードを忘れた場合に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
フォームアクションだけでは使えませんか?
助けてください。
よろしく、
アルン