JSP登錄中Session的用法實(shí)例詳解
本文實(shí)例講述了JSP登錄中Session的用法。分享給大家供大家參考,具體如下:
登錄頁(yè)面
<%@ 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");
}
}
}
成功登錄頁(yè)面
<%@ 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>成功頁(yè)面</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ì)有所幫助。
相關(guān)文章
jsp利用POI生成Excel并在頁(yè)面中導(dǎo)出的示例
本篇文章主要是介紹jsp利用POI生成Excel并在頁(yè)面中導(dǎo)出的示例,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下。2016-10-10
jsp+servlet+jdbc實(shí)現(xiàn)對(duì)數(shù)據(jù)庫(kù)的增刪改查
本篇文章主要介紹了jsp+servlet+jdbc實(shí)現(xiàn)對(duì)數(shù)據(jù)庫(kù)的增刪改查,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2017-01-01
JSP使用Servlet作為控制器實(shí)現(xiàn)MVC模式實(shí)例詳解
這篇文章主要介紹了JSP使用Servlet作為控制器實(shí)現(xiàn)MVC模式的方法,以完整實(shí)例形式較為詳細(xì)的分析了MVC模式的原理及Servlet實(shí)現(xiàn)MVC模式的原理與相關(guān)注意事項(xiàng),需要的朋友可以參考下2015-09-09
jsp實(shí)現(xiàn)簡(jiǎn)單驗(yàn)證碼的方法
這篇文章主要介紹了jsp實(shí)現(xiàn)簡(jiǎn)單驗(yàn)證碼的方法,涉及簡(jiǎn)單的JSP驗(yàn)證碼圖片生成技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-10-10
JSP+Servlet+JavaBean實(shí)現(xiàn)登錄網(wǎng)頁(yè)實(shí)例詳解
這篇文章主要介紹了JSP+Servlet+JavaBean實(shí)現(xiàn)登錄網(wǎng)頁(yè)的方法,以完整實(shí)例形式分析了JSP+Servlet+JavaBean實(shí)現(xiàn)登錄網(wǎng)頁(yè)所涉及的詳細(xì)步驟與具體實(shí)現(xiàn)方法,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-10-10
多種方法實(shí)現(xiàn)當(dāng)jsp頁(yè)面完全加載完成后執(zhí)行一個(gè)js函數(shù)
實(shí)現(xiàn)jsp頁(yè)面完全加載完成后執(zhí)行一個(gè)js函數(shù)的方法有很多,在本文就簡(jiǎn)單為大家介紹下常用的幾種,感興趣的朋友不要錯(cuò)過(guò)2013-10-10
Spring 中 @Service 和 @Resource 注解的區(qū)別
這篇文章主要介紹了Spring @Service 和 @Resource 注解的區(qū)別的相關(guān)資料,需要的朋友可以參考下2017-03-03
JavaScript結(jié)合PHP實(shí)現(xiàn)網(wǎng)頁(yè)制作中雙下拉菜單的動(dòng)態(tài)實(shí)現(xiàn)
在網(wǎng)頁(yè)制作中,常常遇到這種情況,通過(guò)主下拉菜單的選擇,動(dòng)態(tài)的生成子下拉菜單。本文介紹了雙下拉菜單的動(dòng)態(tài)實(shí)現(xiàn),有需要的可以來(lái)了解一下。2016-10-10

