主頁 > 知識(shí)庫 > JSP登錄中Session的用法實(shí)例詳解

JSP登錄中Session的用法實(shí)例詳解

熱門標(biāo)簽:客服外呼系統(tǒng)呼叫中心 電話機(jī)器人銷售公司嗎 電話機(jī)器人案例 土地證宗地圖標(biāo)注符號(hào) vue 地圖標(biāo)注拖拽 自動(dòng)外呼系統(tǒng)怎么防止封卡 保定電銷機(jī)器人軟件 鎮(zhèn)江云外呼系統(tǒng)怎么樣 成都銷售外呼系統(tǒng)公司

本文實(shí)例講述了JSP登錄中Session的用法。分享給大家供大家參考,具體如下:

登錄頁面

%@ page language="java" contentType="text/html; charset=utf-8"
  pageEncoding="utf-8"%>
!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=utf-8">
title>Insert title here/title>
/head>
body>
 div style="float:left;margin-top:100px;margin-left:200px;width:400px;height:300px;background:gray;">
 form action="IndexServlet" method="post">
 div style="float:left;width:400px;height:30px;background:gray;margin-top:50px">
  div style="margin-left:70px;float:left;line-height:30px">賬號(hào):/div>input style="disply:block;float:left;width:200px;height:30px;border:none;" type="text" name="user"/>
 /div>
 div style="float:left;width:400px;height:30px;background:gray;margin-top:50px">
  div style="margin-left:70px;float:left;line-height:30px">密碼:/div>input style="disply:block;float:left;width:200px;height:30px;border:none;" type="text" name="password"/>
 /div>
 div style="float:left;margin-top:50px;width:400px;height:30px;background:gray;">
  input style="float:left;width:60px;height:30px;margin-left:170px;border:none;" type="submit" name="ok" value="登錄"/>
 /div>
 /form>
 /div>
/body>
/html>

檢測(cè)賬號(hào)密碼以及設(shè)置session的IndexServlet

import java.io.IOException;
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.servlet.http.HttpSession;
/**
 * Servlet implementation class IndexServlet
 */
@WebServlet("/IndexServlet")
public class IndexServlet extends HttpServlet {
 private static final long serialVersionUID = 1L;
    
  /**
   * @see HttpServlet#HttpServlet()
   */
  public IndexServlet() {
    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 {
 // TODO Auto-generated method stub
 request.setCharacterEncoding("utf-8");
 String user = request.getParameter("user");
 String password = request.getParameter("password");
 
 String path = request.getContextPath();
 HttpSession session=request.getSession();
 
 if ("1".equals(user)  "1".equals(password)) {
  
  session.setAttribute("name", user);
  response.sendRedirect(path + "/success.jsp");
  
 }else{
  response.sendRedirect(path + "/Index.jsp");
 }
 }
 
}

成功登錄頁面

%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
%
 String path = request.getContextPath();
%>
%
 Object name = session.getAttribute("name");
 if(name==null){
 response.sendRedirect(path+"/Index.jsp");
 }
%>
html>
 head>
 title>成功頁面/title>
 /head>
 body>
 恭喜你,騷年,%=session.getAttribute("name") %>,成功登陸了!
 a href="out.jsp" rel="external nofollow" >注銷/a>
 /body>
/html>

注銷功能的jsp

%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
!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=UTF-8">
title>Insert title here/title>
/head>
body>
 % 
 String path = request.getContextPath();
 %>
 %
   session.removeAttribute("name");
   response.sendRedirect(path+"/Index.jsp");
  %>
/body>
/html>

希望本文所述對(duì)大家jsp程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • jsp cookie+session實(shí)現(xiàn)簡(jiǎn)易自動(dòng)登錄
  • jsp如何獲取Session中的值
  • JSP 中Session的詳解及原理分析
  • JSP Session超時(shí)設(shè)置的實(shí)現(xiàn)方法
  • jsp使用sessionScope獲取session案例詳解

標(biāo)簽:成都 內(nèi)江 天津 麗江 公主嶺 臺(tái)灣 懷化 重慶

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《JSP登錄中Session的用法實(shí)例詳解》,本文關(guān)鍵詞  JSP,登錄,中,Session,的,用法,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《JSP登錄中Session的用法實(shí)例詳解》相關(guān)的同類信息!
  • 本頁收集關(guān)于JSP登錄中Session的用法實(shí)例詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章