一苍狰、會(huì)話跟蹤
1办龄、場(chǎng)景描述
比如登錄某個(gè)購物網(wǎng)站,身份識(shí)別成功后淋昭,在網(wǎng)站下單俐填,支付 等操作,這些操作中當(dāng)前登錄用戶信息必須是共享的翔忽,這樣這些操作結(jié)果才能和登錄用戶做關(guān)聯(lián)英融。
2、概念簡(jiǎn)介
可以把會(huì)話理解為客戶端與服務(wù)器之間的一次交互歇式,在一次交互中可能會(huì)包含多次請(qǐng)求和響應(yīng)驶悟。在JavaWeb中,從客戶端向服務(wù)器發(fā)出第一個(gè)請(qǐng)求開始材失,會(huì)話就開始了痕鳍,直到客戶端關(guān)閉瀏覽器會(huì)話結(jié)束。在一個(gè)會(huì)話的多個(gè)請(qǐng)求中共享數(shù)據(jù)龙巨,這就是會(huì)話跟蹤技術(shù)笼呆。
二、Cookie用法詳解
1旨别、Cookie簡(jiǎn)介
Cookie在HTTP中通常是用來辨別用戶身份诗赌,進(jìn)行會(huì)話跟蹤而儲(chǔ)存在用戶本地終端上的數(shù)據(jù),一般會(huì)加密處理秸弛,由用戶客戶端計(jì)算機(jī)暫時(shí)或永久保存的信息境肾。其結(jié)構(gòu)就是一個(gè)鍵和一個(gè)值構(gòu)成的。隨著服務(wù)器端的響應(yīng)發(fā)送給客戶端瀏覽器胆屿。然后客戶端瀏覽器會(huì)把Cookie保存起來奥喻,當(dāng)下一次再訪問服務(wù)器時(shí)把Cookie再發(fā)送給服務(wù)器。
Cookie是由服務(wù)器創(chuàng)建非迹,然后通過響應(yīng)發(fā)送給客戶端的鍵值對(duì)环鲤。客戶端會(huì)保存Cookie憎兽,并會(huì)標(biāo)注出Cookie的來源冷离。當(dāng)客戶端向服務(wù)器發(fā)出請(qǐng)求時(shí)會(huì)把Cookie包含在請(qǐng)求中發(fā)送給服務(wù)器,這樣服務(wù)器就可以識(shí)別客戶端纯命。
2西剥、Cookie用法
創(chuàng)建Cookie
JavaWeb中,可以基于Servlet創(chuàng)建Cookie亿汞,并設(shè)置屬性瞭空。
publicclassCookieServletOneextendsHttpServlet{@OverrideprotectedvoiddoGet(HttpServletRequest request, HttpServletResponse response)throwsServletException, IOException{? ? ? ? response.setContentType("text/html;charset=utf-8");// 創(chuàng)建CookieCookie cookie =newCookie("author","cicada");// 設(shè)置生命周期 1小時(shí)cookie.setMaxAge(60*60);? ? ? ? response.addCookie(cookie) ;? ? ? ? response.getWriter().print("Hello:Cookie");? ? }}
訪問:http://localhost:6002/cookieServletOne
查看響應(yīng)頭:
ResponseHeaderSet-Cookie: author=cicada; Max-Age=3600;
這樣,服務(wù)器創(chuàng)建的Cookie在客戶端就拿到了。
獲取Cookie
publicclassCookieServletOneextendsHttpServlet{@OverrideprotectedvoiddoPost(HttpServletRequest request, HttpServletResponse response)throwsServletException, IOException{? ? ? ? System.out.println("doPost...");? ? ? ? Cookie[] cookies = request.getCookies() ;for(Cookie cookie:cookies){? ? ? ? ? ? System.out.println("Name:"+cookie.getName());? ? ? ? ? ? System.out.println("Value:"+cookie.getValue());? ? ? ? }? ? ? ? response.setContentType("text/html;charset=utf-8");? ? ? ? String userName = request.getParameter("userName") ;? ? ? ? response.getWriter().print("Hello:"+userName);? ? }}
通過測(cè)試咆畏,控制臺(tái)輸出:Name:author;Value:cicada南捂。
更新Cookie
更新就是指Cookie的覆蓋,如果服務(wù)器端發(fā)送重復(fù)的Cookie那么會(huì)覆蓋原有的Cookie旧找。
publicclassCookieServletTwoextendsHttpServlet{@Overrideprotectedvoid doGet(HttpServletRequestrequest,HttpServletResponseresponse)throwsServletException,IOException{? ? ? ? response.setContentType("text/html;charset=utf-8");// 創(chuàng)建CookieCookiecookie =newCookie("author","smile");// 設(shè)置生命周期 2小時(shí)cookie.setMaxAge(60*60*2);? ? ? ? response.addCookie(cookie) ;? ? ? ? response.getWriter().print("Hello:Cookie");? ? }}
可以通過上面方法測(cè)試Cookie的獲取結(jié)果溺健。
刪除Cookie
cookie.setMaxAge(0):生命等于0是一個(gè)特殊的值,它表示cookie被作廢钮蛛。
publicclassCookieServletTwoextendsHttpServlet{@OverrideprotectedvoiddoPost(HttpServletRequest request, HttpServletResponse response)throwsServletException, IOException{? ? ? ? response.setContentType("text/html;charset=utf-8");? ? ? ? Cookie[] cookies = request.getCookies() ;for(Cookie cookie:cookies){if(cookie.getName().equals("author")){? ? ? ? ? ? ? ? cookie.setMaxAge(0);? ? ? ? ? ? ? ? response.addCookie(cookie);? ? ? ? ? ? }? ? ? ? }? ? ? ? String userName = request.getParameter("userName") ;? ? ? ? response.getWriter().print("Hello:"+userName);? ? }}
這樣再測(cè)試Cookie的獲取方法鞭缭,發(fā)現(xiàn)上面刪除的Cookie就沒有了。
3魏颓、Cookie相關(guān)API
setMaxAge()
設(shè)置 cookie 過期的時(shí)間岭辣,秒為單位。默認(rèn)情況cookie 只會(huì)在當(dāng)前 session 會(huì)話中有效琼开。
getMaxAge()
獲取 cookie 的最大生存周期易结。
getName()
獲取 cookie 的名稱。名稱在創(chuàng)建后不能改變柜候。
getValue()
獲取與 cookie 關(guān)聯(lián)的值搞动。
setValue(String value)
設(shè)置與cookie關(guān)聯(lián)的value值。相同的name多次設(shè)置會(huì)覆蓋渣刷。
三鹦肿、Session 跟蹤
1、Session簡(jiǎn)介
會(huì)話管理辅柴,當(dāng)用戶在應(yīng)用程序的Web頁之間跳轉(zhuǎn)時(shí)箩溃,存儲(chǔ)在Session對(duì)象中的變量將不會(huì)丟失,而是在整個(gè)用戶會(huì)話中一直存在下去碌嘀。Servlet中可以把一個(gè)會(huì)話內(nèi)需要共享的數(shù)據(jù)保存到HttSession對(duì)象中涣旨。四大域?qū)ο螅篜ageContext、ServletRequest股冗、HttpSession霹陡、ServletContext。
2止状、Session運(yùn)行原理
首次使用
首次使用session時(shí)烹棉,服務(wù)器端要?jiǎng)?chuàng)建session,session是保存在服務(wù)器端怯疤,數(shù)據(jù)是保存在session中浆洗,sessionId通過Cookie發(fā)送給客戶端,且只在瀏覽器本次會(huì)話中存在集峦,也就是說如果用戶關(guān)閉了瀏覽器伏社,那么這個(gè)Cookie就丟失抠刺。
客戶端訪問
客戶端再次訪問服務(wù)器時(shí),在請(qǐng)求中會(huì)帶上sessionId洛口,服務(wù)器會(huì)通過sessionId找到對(duì)應(yīng)的session矫付,而無需再創(chuàng)建新的session凯沪。
時(shí)效性
當(dāng)一個(gè)session長時(shí)間沒人使用的話第焰,服務(wù)器會(huì)把session刪除了,這個(gè)時(shí)長在Tomcat中配置是30分鐘妨马,可以在${CATALANA}/conf/web.xml找到這個(gè)配置挺举,也可以在的web.xml中覆蓋這個(gè)配置!
30
3烘跺、相關(guān)API用法
getSesssion()
當(dāng)前會(huì)話已經(jīng)存在session對(duì)象那么直接返回湘纵,如果當(dāng)前會(huì)話還不存在,創(chuàng)建session對(duì)象并返回 滤淳。
getAttribute(String name)
返回該 session 會(huì)話中具有指定名稱的對(duì)象 梧喷。
getId()
分配給該 session 會(huì)話的唯一標(biāo)識(shí)符的字符串。
setAttribute(String name,Object value)
使用指定的名稱綁定一個(gè)對(duì)象到該 session 會(huì)話脖咐。
removeAttribute(String name)
從該 session 會(huì)話移除指定名稱的對(duì)象铺敌。
4、應(yīng)用案例
在網(wǎng)站中屁擅,經(jīng)吵テ荆可見的一個(gè)功能就是上次登錄時(shí)間,這個(gè)功能基于Session可以很便捷的實(shí)現(xiàn)派歌。
publicclassSessionServletOneextendsHttpServlet{@OverrideprotectedvoiddoGet(HttpServletRequest request, HttpServletResponse response)throwsServletException, IOException{? ? ? ? response.setContentType("text/html;charset=utf-8");? ? ? ? SimpleDateFormat dateFormat =newSimpleDateFormat("yyyy-MM-dd HH:mm:ss");? ? ? ? HttpSession session = request.getSession(true) ;? ? ? ? Date createTime =newDate(session.getCreationTime());? ? ? ? Date lastAccessTime =newDate(session.getLastAccessedTime());? ? ? ? session.setAttribute("author","cicada");? ? ? ? response.getWriter().print("SessionId:"+ session.getId() +"<br/>"+"User Author:"+ session.getAttribute("author")+"<br/>"+"Create Time:"+ dateFormat.format(createTime)+"<br/>"+"Last Access Time:"+dateFormat.format(lastAccessTime));? ? }}
訪問http://localhost:6002/sessionServletOne
頁面打印弯囊,多次訪問,查看效果胶果。
SessionId:40C12C367CBFA7469D57E72C5C091300User Author:cicadaCreateTime:2019-12-1415:34:10LastAccessTime:2019-12-1415:35:13
四匾嘱、源代碼地址
GitHub·地址https://github.com/cicadasmile/java-base-parentGitEE·地址https://gitee.com/cicadasmile/java-base-parent