0
こんにちは、今日jspを使い始めました。単純なログインJSPページをコーディングしようとしています。アラートを表示するためにスクリプトを使用する方法を教えてください。
今、ログインに成功しなかった場合に警告を表示しようとしています。
@WebServlet(name = "UserConnect", urlPatterns = {"/UserConnect"})
public class UserConnect extends HttpServlet {
@EJB
private UtilisateurFacadeLocal utilisateurFacade;
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String username = request.getParameter(Constants.USERNAME);
String password = request.getParameter(Constants.PASSWORD);
String email ="";
boolean doLogin = utilisateurFacade.doLogin(username, password, email);
System.out.println("do login "+doLogin);
if (doLogin) {
response.sendRedirect("https://www.google.fr");
}else{
request.setAttribute(Constants.ERROR, "login ou mot de passe incorrecte");
RequestDispatcher requestDispatcher = getServletContext().getRequestDispatcher("/Login.jsp");
requestDispatcher.forward(request, response);
}
}
`
私<p>
がうまくメッセージを示しているが、私は何をすべき何の警告がありません。ここ
は、ここに私のjspページ
<body contenteditable="false">
<p><%= request.getAttribute(Constants.ERROR)%></p>
<script>
if (!$(<%= request.getAttribute(Constants.ERROR)%>).isEmptyObject()) {
alert("Veuillez confirmer mot de passe et le username");
}
</script>
<!-- Static container -->
<div class="login-wrap">
<div class="login-html">
<input id="tab-1" type="radio" name="tab" class="sign-in" checked="" contenteditable="false"><label contenteditable="false" for="tab-1" class="tab">Se connecter </label>
<input id="tab-2" type="radio" name="tab" class="sign-up" contenteditable="false" ><label contenteditable="false" for="tab-2" class="tab">S'inscrire</label>
<div class="login-form">
<div class="sign-in-htm">
<form action="./UserConnect" name="login">
....
</form>
は私のサーブレットuserloginのです?