国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術文章
文章詳情頁

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

瀏覽:23日期: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>

檢測賬號密碼以及設置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程序設計有所幫助。

標簽: JSP
相關文章:
主站蜘蛛池模板: 国产手机在线视频放线视频 | 黄性色 | 香蕉超级碰碰碰97视频在线观看 | 日韩中文字幕精品一区在线 | 亚洲大片| 久久99精品久久久久久h | 亚洲精品久久一区影院 | 精品欧美一区二区三区精品久久 | 亚洲国产天堂久久精品网 | 国产男女免费完整视频 | 欧美人成在线观看网站高清 | 亚洲一区二区三区精品视频 | 成人久久伊人精品伊人 | 97超在线 | 三级中文字幕永久在线视频 | 欧美成人艳星在线播放 | 1024国产欧美日韩精品 | 欧美日韩视频一区二区在线观看 | 国产一区二区三区免费大片天美 | 国产自在自线午夜精品 | 国产人成亚洲第一网站在线播放 | 在线视频一二三区2021不卡 | 国产一级特黄一级毛片 | 国产午夜在线观看视频播放 | 国产精品久久久久久久久福利 | 国产黄色免费网站 | 99ri在线精品视频 | 毛片国产 | 激情欧美日韩一区二区 | 狠狠久久综合 | 在线看片亚洲 | 亚洲免费区 | 最新国产午夜精品视频成人 | 中文字幕在线欧美 | 国产一及毛片 | 日韩欧美印度一级毛片 | 中文字幕亚洲综合久久男男 | 一级做a爱久久久久久久 | 国内成人自拍 | 免费看91毛片 | 国产精品成人自拍 |