jsp cookie+session实现浅易自动登录

封锁欣赏器只会使存储在客户端欣赏器内存中的session cookie失效,不会使处事器端的session工具失效。
假如配置了逾期时间,欣赏器就会把cookie生存到硬盘上,封锁后再次打开欣赏器,这些cookie依然有效直到高出设定的逾期时间。

jsp cookie+session实现简易自动登录

login.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <head> <title>登录</title> </head> <body> <form action="sucess.jsp" method="post"> 用户名:<input /><br/> <%--<input type="checkbox" />记着用户名 --%> <input type="submit" value="登录"/> </form> <% //读取session值 String val= (String)session.getAttribute("name"); //假如session不存在 if(val==null){ val ="不存在"; } out.print("当前\""+val+"\"用户可自动登录"); %> </body> </html>

success.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>主不在乎</title> </head> <body> <% //获取username String name = request.getParameter("username"); //判定用户名是否存在 if(name != null && !name.trim().equals("")){ //String[] time = request.getParameterValues("time"); //配置session值,(login页面可读取) session.setAttribute("name", name); //配置Cookie Cookie Cookie = new Cookie("name",name); Cookie.setMaxAge(30*24*3600); //配置cookie有效期为30天 response.addCookie(Cookie); //在客户端生存Cookie out.println("welcome: " + name+"接待登录"); } else{ response.sendRedirect("main.jsp"); } %> <a href="https://www.jb51.net/login.jsp" >relogin</a> </body> </html>

main.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta charset="ISO-8859-1"> <title>主不在乎</title> </head> <body> <% String name=(String)session.getAttribute("username"); //获取cookie Cookie[] cookies = request.getCookies(); //cookie存在 if(cookies != null && cookies.length > 0){ for(Cookie cookie:cookies){ //获取cookie的名字 String cookieName = cookie.getName(); //判定是否与name相等 if(cookieName.equals("name")){ //获取cookie的值 String value = cookie.getValue(); name = value; } } out.println("welcome again: " + name+"接待登录"); //************************* // 另一种写法 String v=null; for(int i=0;i<cookies.length;i++){ if(cookies[i].getName().equals("name")){ v=cookies[i].getValue(); } } if(v!=null){ out.println(" Hello World "+v); } } //************************* else { response.sendRedirect("https://www.jb51.net/login.jsp"); } %> <a href="https://www.jb51.net/login.jsp" >relogin</a> </body> </html>

运行login.jsp

jsp cookie+session实现简易自动登录

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsddff.html