We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Related to #6220
The CookieCsrfTokenRepository attempts to use the setHttpOnly method only if that method is available in javax.servlet.http.Cookie.
CookieCsrfTokenRepository
setHttpOnly
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:
Remove Servlet 2.5 and 3.0 Support for Remember Me and CSRF
877ed41
Fixes: spring-projectsgh-6263, Fixes: spring-projectsgh-6262
fc802e1
Fixes: gh-6263, Fixes: gh-6262
Successfully merging a pull request may close this issue.
Related to #6220
The
CookieCsrfTokenRepository
attempts to use thesetHttpOnly
method only if that method is available injavax.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: