jsp を使用して簡単なログイン システムを設計しようとしています。ログインページで、ユーザーは自分のユーザー名とパスワードを入力します。これは、検証時に次のように実行されます。
if username and password combination exists, then
{
HttpSession session = request.getSession(false);
if (session == null) {
// Session not created yet. So we do it now.
session = request.getSession();
session.setAttribute("id",idvariable );
response.sendRedirect("home.jsp");
// I redirect them to their profile home pages
}
else {
// Session is already created.
response.sendRedirect("home.jsp");
// So i again redirect them to their home page
}
}
「home.jsp」で、セッションが既に作成されているかどうかを確認するにはどうすればよいですか??
*プロファイルのすべてのページでセッションが既に開始されているかどうかを確認する必要があります。だから私はすべてのjspページの上部で呼び出すことができるある種の関数を作成したいと思います*
私は何をすべきか ??