亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術(shù)文章
文章詳情頁

JSP登錄中Session的用法實例詳解

瀏覽:4日期:2022-06-07 13:24:59

本文實例講述了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>
 <form action="IndexServlet" method="post">
 <div>
  <div>賬號:</div><input type="text" name="user"/>
 </div>
 <div>
  <div>密碼:</div><input type="text" name="password"/>
 </div>
 <div>
  <input type="submit" name="ok" value="登錄"/>
 </div>
 </form>
 </div>
</body>
</html>

檢測賬號密碼以及設(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>

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

標簽: JSP
相關(guān)文章:
主站蜘蛛池模板: 娇小性色xxxxx中文 | 成人区在线观看免费视频 | 一级床戏| 欧美三级真做在线观看 | 国产精品1024在线永久免费 | 伊人久久在线观看 | 在线播放国产一区二区三区 | 精品国精品国产自在久国产不卡 | 国产又色又爽在线观看 | 色婷婷影视 | 欧美手机看片 | 老黄网站在线观看免费 | 欧美精品一区二区三区久久 | 黄在线观看www免费看 | 国产成人免费观看在线视频 | 最新99国产成人精品视频免费 | 国产成人a视频在线观看 | 亚洲精品久久久久久久福利 | 成人免费网址在线 | 国产夜色视频 | 萌白酱福利视频在线网站 | 欧美一二区| 国产精品久久久久影院 | 国产成人久久精品激情91 | 2022久久免费精品国产72精品 | 中国欧美日韩一区二区三区 | 国产成人不卡 | 欧美日韩高清不卡免费观看 | 九九久久精品 | 99久久精品国产免费 | 欧美日韩午夜精品不卡综合 | 最新91在线 | 国产精品毛片一区二区三区 | 亚洲精品一区二三区在线观看 | 国内精品视频区在线2021 | 久久精品韩国三级 | 给个网站可以在线观看你懂的 | 国产福利视频在线播放 | 亚洲国产成人精品青青草原100 | 日本高清不卡二区 | 国产妇女在线 |