Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Tomcat 6 でセッション追跡をオフにすることは可能です。つまり、Cookie JSESSIONIDの作成を回避します。
ありがとうルイス
context.xml のコンテキスト定義に cookies='false' を入れるだけです
<?xml version='1.0' encoding='UTF-8'?> <Context path='/myApplicationContext' cookies='false'> <!-- other settings --> </Context>