You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LazyCsrfTokenRepository supports lazily saving the CsrfToken which allowed for lazily saving the CsrfToken. However, it does not support lazily reading the CsrfToken. This means every request requires reading the CsrfToken (often the HttpSession).
We should add support for lazily reading the CsrfToken and thus prevent unnecessary reads to the HttpSession.
The text was updated successfully, but these errors were encountered:
Previously LazyCsrfTokenRepository supported lazily saving the CsrfToken
which allowed for lazily saving the CsrfToken. However, it did not
support lazily reading the CsrfToken. This meant every request required
reading the CsrfToken (often the HttpSession).
This commit allows for lazily reading the CsrfToken and thus prevents
unnecessary reads to the HttpSession.
Closesgh-11700
LazyCsrfTokenRepository
supports lazily saving theCsrfToken
which allowed for lazily saving theCsrfToken
. However, it does not support lazily reading theCsrfToken
. This means every request requires reading theCsrfToken
(often theHttpSession
).We should add support for lazily reading the
CsrfToken
and thus prevent unnecessary reads to theHttpSession
.The text was updated successfully, but these errors were encountered: