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.