これは、2 つの JSP ページ間で値を交換する最初の試みです。index.jsp ページにはログイン フォームがあり、login.jsp ページはこのログインを検証します。ログインに失敗すると、index.jsp にリダイレクトされます。値が 0 の有効なパラメーター。成功した場合、値は 1 になります。
index.jsp
<%@page import="javax.enterprise.inject.spi.Bean"%>
<%@page import="myDatabase.Login"%> //this is class that I created
<%@page import="myDatabase.JavaDB"%> //this is a class that I created
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="indexCSS.css" />
<title>Chat</title>
</head>
<body>
<jsp:include page="login.jsp">
<jsp:param name="valid" value="1"/>
</jsp:include>
<% String valid = request.getParameter("valid");%>
<div class="mainPage">
<div id="header">
<div id="pageTitle">
Chat
</div>
</div>
<div id="loginBox">
<form name="login" action="login.jsp" method="POST">
<div id="loginItems">
<div id="loginTitle">
Log in
</div>
<hr style="color:green;">
<div style="margin-top:17px; overflow:hidden;">
<label for="id">
ID
</label>
<span id="idError" class="error">
<% if(valid.equals("0")) { %>is not valid<% } %>
</span>
<br>
<input class="inputText" type="text" name="id" value="" maxlength="10" autocomplete="off"/>
</div>
<div style="margin-top:17px; overflow:hidden;">
<label for="password">
Password
</label>
<span id="passwordError" class="error">
</span>
<br>
<input class="inputText" type="password" name="password" value="" maxlength="32" autocomplete="off"/>
</div>
<div style="margin-top:17px; overflow:hidden;">
<div>
Forgot your Password?
</div>
</div>
<div style="margin-top:17px; position:relative; overflow:hidden">
<input class="inputButton" type="submit" value="Log in" name="loginButton" />
</div>
</div>
</form>
</div>
</div>
</body>
</html>
これはlogin.jspです
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<jsp:useBean id="loginBean" scope="session" class="myDatabase.Login" />
<jsp:setProperty name="loginBean" property="id" />
<jsp:setProperty name="loginBean" property="password" />
<%
JavaDB myJavaDB=new JavaDB();
myJavaDB.Connect("IULChat","iul","iul");
if(myJavaDB.isConnected()==true){
//response.sendRedirect("index.jsp?a=2");
Login myLogin = new Login(loginBean.getId(),loginBean.getPassword());
myLogin.setConn(myJavaDB.getMyConnection());
myLogin.login(); loginBean.setId(0); loginBean.setPassword("");
if(myLogin.isValid()==true)
{
response.sendRedirect("index.jsp?valid=1");
}
else
{
response.sendRedirect("index.jsp?valid=0");
}
}
else
out.println("no");
%>
</body>
</html>
プロジェクトを実行すると、このエラーが発生します。
type Exception report
message
descriptionThe server encountered an internal error () that prevented it from fulfilling this request.
exception
org.apache.jasper.JasperException: java.lang.NullPointerException
root cause
java.lang.NullPointerException
note The full stack traces of the exception and its root causes are available in the GlassFish Server Open Source Edition 3.1.2 logs.
このセクションの Java コードを削除すると、このエラーはなくなります
<span id="idError" class="error">
<% if(valid.equals("0")) { %>is not valid<% } %>
</span>