溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何深入Tomcat源碼分析Session

發布時間:2021-12-08 18:23:26 來源:億速云 閱讀:182 作者:柒染 欄目:大數據

如何深入Tomcat源碼分析Session,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

Session到底是個啥?

我們都知道,HTTP協議本身是無狀態的(Stateless),這對于一些簡單的頁面展示來說,功能足夠,不受影響。而對于日漸復雜的動態頁面、應用,各種需要登錄認證等場景,就力不從心了。試想對于一個已經登錄的用戶仍然一次次的提示登錄,會是什么感受呢?

因此,多數需要保持狀態的應用,就要保證客戶端和服務端交互狀態的一致。對于瀏覽器發起的多次請求,僅基于HTTP協議,是無法識別出是否為同一用戶請求的。而為了保持客戶端和服務端交互狀態,可以采取一系列的策略,例如:

  • Cookie

  • 隱藏form 表單域

  • Session

  • URL

  • SSL

下面將通過深入Tomcat源碼,分析這一最常用的Servlet容器內部是如何使用Session來保持客戶端與服務器狀態一致的。

做為一名Web應用開發者,我們一定都聽說過,甚至了解過Session這個詞,以及其背后代表的一些概念。

Session,中文稱之為會話,用于兩個設備之間交互時狀態的保持。因此,會話中至少要有一方需要保存會話的狀態。

在Servlet規范中,session對象由HttpSession這一接口來表示,接口描述簡明的概括了其主要作用

Provides a way to identify a user across more than one page request or

visit to a Web site and to store information about that user.


The servlet container uses this interface to create a session between an HTTP

client and an HTTP server. The session persists for a specified time period,

across more than one connection or page request from the user. A session

usually corresponds to one user.

而Tomcat內部則是通過StandardSession實現了HttpSession這個接口,內部統一使用StandardSession來處理。

在初次請求應用時,如果需要用到Session,則會創建之。一般的Servlet中并不會直接使用。而如果是請求JSP文件,由于JSP默認的隱式對象中是包含

session的,其在生成Servlet文件時,內部相當于包含了

HttpServletRequest.getSession(true)

因此,請求時會直接創建session對象。

創建session的過程,大致是下面的樣子:

protected Session doGetSession(boolean create) {

// There cannot be a session if no context has been assigned yet

Context context = getContext();

if (context == null) {

return (null);

}

// Return the current session if it exists and is valid

if ((session != null) && !session.isValid()) {

session = null;

}

if (session != null) {

return (session);

}


// Return the requested session if it exists and is valid

Manager manager = context.getManager();

if (manager == null) {

return (null); // Sessions are not supported

}

if (requestedSessionId != null) {

try {

session = manager.findSession(requestedSessionId);

} catch (IOException e) {

session = null;

}

if ((session != null) && !session.isValid()) {

session = null;

}

if (session != null) {

session.access();

return (session);

}

}


// Create a new session if requested and the response is not committed

if (!create) {

return (null);

}

if (response != null

&& context.getServletContext()

.getEffectiveSessionTrackingModes()

.contains(SessionTrackingMode.COOKIE)

&& response.getResponse().isCommitted()) {

throw new IllegalStateException(

sm.getString("coyoteRequest.sessionCreateCommitted"));

}


// Attempt to reuse session id if one was submitted in a cookie

// Do not reuse the session id if it is from a URL, to prevent possible

// phishing attacks

// Use the SSL session ID if one is present.

if (("/".equals(context.getSessionCookiePath())

&& isRequestedSessionIdFromCookie()) || requestedSessionSSL ) {

session = manager.createSession(getRequestedSessionId());

} else {

session = manager.createSession(null);

}


// Creating a new session cookie based on that session

if (session != null

&& context.getServletContext()

.getEffectiveSessionTrackingModes()

.contains(SessionTrackingMode.COOKIE)) {

Cookie cookie =

ApplicationSessionCookieConfig.createSessionCookie(

context, session.getIdInternal(), isSecure());

response.addSessionCookieInternal(cookie);

}

if (session == null) {

return null;

}

session.access();

return session;

}

整體流程基本是先判斷是否已經存在session,如果沒有則創建。如果有,則直接使用。

此時,需要注意兩個問題:

  1. 初次請求時,session如何生成并傳遞給客戶端的

  2. 后續的其它請求中,如果將客戶端的請求與服務端已有的session建立關聯的

上面代碼中,判斷session不存在并創建的過程,是直接調用createSession這個方法,并會根據sessionId是否為空,來確定是完全新創建session,還是恢復已有session。

public Session createSession(String sessionId) {

if ((maxActiveSessions >= 0) &&

(getActiveSessions() >= maxActiveSessions)) {

rejectedSessions++;

throw new TooManyActiveSessionsException(

sm.getString("managerBase.createSession.ise"),

maxActiveSessions); //注意這里有個策略

}

// Recycle or create a Session instance

Session session = createEmptySession();

// Initialize the properties of the new session and return it

session.setNew(true);

session.setValid(true);

session.setCreationTime(System.currentTimeMillis());

session.setMaxInactiveInterval(this.maxInactiveInterval);

String id = sessionId;

if (id == null) {

id = generateSessionId();

}

session.setId(id);

sessionCounter++;

SessionTiming timing = new SessionTiming(session.getCreationTime(), 0);

synchronized (sessionCreationTiming) {

sessionCreationTiming.add(timing);

sessionCreationTiming.poll();

}

return (session);

}


這里有個Session超時時間,即最大空閑時間


注意此處maxInactiveInterval的值,即為我們默認的web.xml中提供的session超時時間(后臺回復關鍵字004,了解更多),為30分鐘。

在創建完Session之后,Tomcat通過在響應頭中設置Set-Cookie這個MimeHeader來返回給客戶端session數據。返回的數據是這樣的:

JSESSIONID=CC4D83F3A61823AA8F980C89890A19D7; Path=/manager/; HttpOnly

設置Header的過程如下:

public void addSessionCookieInternal(final Cookie cookie) {

if (isCommitted()) { //此處判斷,如果response已經提交,則不能再設置

return;

}

String name = cookie.getName();

final String headername = "Set-Cookie";

final String startsWith = name + "=";

String header = generateCookieString(cookie); //此處根據具體cookie的內容生成對應的串,內部會判斷cookie的版本,過期時間等


if (!set) {

addHeader(headername, header);

} }


我們看到,初次請求時,響應頭中包含了高亮的數據。


那再次請求呢,我們看到這次響應頭中沒有sessionId的數據,而是轉移到請求頭中,并且是以Cookie的形式提供:


此時,傳到服務端,服務端解析Cookie對應的JSESSIOONID,并提取對應的sessionId值,與服務端對應的session數據做關聯。

我們看代碼中的實現

再次請求時,從Request中獲取SessionCookie的地方在這里:

CoyoteAdapter.postParseRequset()

其內部調用 parseSessionCookiesId(request), 解析請求頭中的cookie數據。

public void parseCookieHeader(MimeHeaders headers, ServerCookies serverCookies) {

// process each "cookie" header

int pos = headers.findHeader("Cookie", 0);

}

}

此處需要注意SessionCookie的名稱是允許配置的,因此這一名稱不一定一直都是JSESSIONID。

在解析Cookie獲取SessionId之后,我們拿到的僅僅是一個字符串,還不能馬上和Session關聯起來,此時request會將此值賦值給其內部的一個名為

requestSessionId的屬性。

當后面再次請求session時,就和我們最上面代碼看到的一樣,會有一個findSession的過程,

到此,我們基本了解了客戶端瀏覽器和服務端Tomcat之間,如果保持交互狀態的一致中的一種實現方式,即SessionCookie。

而本質上,這一過程就是傳統上Socket交互的一個過程,我們完全可以自已寫一段代碼模擬返回響應的數據,只是需要注意響應頭數據在HTTP規范中有特定的格式要求,如下,即數據之間要以CRLF分隔

總結下,客戶端初次請求服務端會創建Session,此時通過在響應頭中設置Set-Cookie將sessionId傳遞給客戶端。后續客戶端的請求會在請求頭中設置Cookie項帶上sessionId,從而保證客戶端與服務端交互狀態的一致。

關于如何深入Tomcat源碼分析Session問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

亚洲午夜精品一区二区_中文无码日韩欧免_久久香蕉精品视频_欧美主播一区二区三区美女