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
@studyforbetter there isn't anything special to do for XML in this case. CookieCsrfTokenRepository is configured by both the Java config as well as the XML config in the same way.
Related to #6220
The
AbstractRememberMeServices
attempts to use the setHttpOnly method only if that method is available in javax.servlet.http.Cookie.Since Spring Framework 5.0 has a Servlet Spec baseline of 3.1, this check is no longer necessary.
We should always use the setHttpOnly method and remove any corresponding Servlet 2.5 or 3.0 tests.
The text was updated successfully, but these errors were encountered: