JSP&Servletで簡単なログインページを作っています。
ただ、ログイン成功した場合にloginResult.jsp画面に遷移し、失敗した場合はloginResultFailed.jsp画面に遷移させたいのですが、画面遷移で失敗してしまいます。
下記はEclipseのファイル配置です。
最初は下記index.jspでIDとPASSWORDをユーザ入力から受け取り、login.java(servlet)へIDとPASSWORDデータを渡します。
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Insert title here</title> </head> <body> <br>Login Form <form action="/LoginDemo/loginpage" method="POST"> ID:<input type="text" name="ID"> <br><br> Password:<input type="text" name="Password"> <br> <br> <input type="submit" value="Search"> </form> </body> </html>
次にlogin.java(servlet)で受け取ったIDとPASSWORDの値をデータベース上のidとpasswordと照合し、合っていれば「loginResult.jsp」に遷移し、違っていれば「loginResultFailed.jsp」に遷移するようにしたいのですが、後述する真っ白な画面に「Served at: /LoginDemo」とだけ表示され、遷移しませんでした。
package info.logindemo; import java.io.IOException; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import javax.naming.InitialContext; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.sql.DataSource; /** * Servlet implementation class Login */ @WebServlet("/Login") public class Login extends HttpServlet { private static final long serialVersionUID = 1L; // データソースの作成 DataSource ds; // 初期化処理 public void init() throws ServletException { try { // 初期コンテキストを取得 InitialContext ic = new InitialContext(); // ルックアップしてデータソースを取得 ds = (DataSource) ic.lookup("java:comp/env/jdbc/searchman"); } catch (Exception e) { } } /** * @see HttpServlet#HttpServlet() */ public Login() { super(); // TODO Auto-generated constructor stub } /** * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse * response) */ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub response.getWriter().append("Served at: ").append(request.getContextPath()); } /** * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse * response) */ protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // initial settings of DB Connection conn = null; PreparedStatement pstmt = null; ResultSet rset = null; // setting text code request.setCharacterEncoding("Windows-31J"); // get the id in index.jsp String inputId = request.getParameter("ID"); // get the password in index.jsp String inputPassword = request.getParameter("Password"); System.out.println(inputId); System.out.println(inputPassword); try { // register JDBC Driver // Class.forName("com.mysql.jdbc.Driver"); // // creating Connection // conn = // DriverManager.getConnection("jdbc:mysql://localhost:3306/budgetbook?serverTimezone=UTC&useSSL=false", // "suser", "spass"); // データソースからConnectionを取得 conn = ds.getConnection(); // preparing for creating sql StringBuffer sql = new StringBuffer(); // creating sql from name sql.append("select id, password from logintable"); // display sql System.out.println(sql); // display sql sentence pstmt = conn.prepareStatement(new String(sql)); // execute sql pstmt.execute(); // put the executed result into ResultSet class rset = pstmt.executeQuery(); // test while (rset.next()) { System.out.println(rset.getString("id") + ", " + rset.getString("password")); } // transfer the data to the transition page(put it by Attribute) request.setAttribute("SqlResult", rset); // move on to loginResult.jsp or loginResultFailed.jsp if (inputId.equals(rset.getString("id")) && inputPassword.equals(rset.getString("password"))) { response.sendRedirect("loginResult.jsp"); } else { response.sendRedirect("loginResultFailed.jsp"); } // terminate the used objects rset.close(); pstmt.close(); conn.close(); } catch (Exception e) { e.printStackTrace(); doGet(request, response); } finally { try { // just in case, terminate the DB connection with finally statement conn.close(); } catch (Exception e) { } } } }
画面遷移したいのですが、前述の通り、下記のような結果になってしまいます。
ログインが成功した場合は、下記画面(loginResult.jsp)を表示するようにしたいです。
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@page import="java.sql.*"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Login Success Page</title> </head> <body> Login Success!!! </body> </html>
大変恐縮ではございますが。ご回答いただけますと幸いです。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。