コミュニティアチーブメントバーを展開する。

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

この会話は、活動がないためロックされています。新しい投稿を作成してください。

解決済み

Get rid of JSESSIONID cookie

Avatar

以前のコミュニティメンバー

Hi,

in my website every request sets and/or uses a JSESSIONID cookie. Now this indicates to the caching server that a request should be handled by the publisher instance, skipping the cache.
I'm pretty sure I don't need any sessions (yet). However, I cannot seem to get rid of it.

Do you have any idea, where the session is coming from?

Regards
Mike

1 受け入れられたソリューション

Avatar

正解者
Level 10

make sure you have <%@ page session="false" %> in your jsp

元の投稿で解決策を見る

2 返信

Avatar

正解者
Level 10

make sure you have <%@ page session="false" %> in your jsp

Avatar

以前のコミュニティメンバー

Turns out, sessions are created by default when using JSPs, unless you disable it by

<%@ page session="false" %>

directive.