Я создаю веб-приложение, используя только страницы JSP и сервлеты.
Я пытаюсь создать форму входа, но не могу зайти на домашнюю страницу.
Кто-нибудь знает, как с этим справиться?
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
try {
String username = request.getParameter("username");
String password = request.getParameter("password");
Iterator it = list_etudiant().iterator();
System.out.println("username" + username);
while (it.hasNext()) {
Etudiant et = (Etudiant) it.next();
String user_name = et.getEmailEtudiant();
String pass_word = et.getPasswordEtudiant();
if ((user_name == null ? username == null : user_name.equals(username)) && (pass_word == null ? password == null : pass_word.equals(password))) {
response.sendRedirect("View/Home.jsp");
}
}
} catch (Exception ex) {
Logger.getLogger(LoginController.class.getName()).log(Level.SEVERE, null, ex);
response.sendRedirect("index.html");
}
}
И еще один вопрос, почему я не вижу вывод в консоли Netbeans? Например, когда я хочу напечатать что-нибудь:
System.out.println("username is : "+username);
Я не могу найти вывод, и я просто получаю это:
BUILD SUCCESSFUL (total time: 1 second)