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.
Spring security 2 と Apache Tomcat 7 設定を使用して JSESSIONID cookie をセキュアに設定する方法。
以下のコードを web.xml に挿入しましたが、動作していないようです。
<cookie-config> <secure>true</secure> </cookie-config>
ありがとう
以下を使用します。
<session-config> <cookie-config> <secure>true</secure> <http-only>true</http-only> </cookie-config> </session-config>