2
0

logout.adoc 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. [[jc-logout]]
  2. = Handling Logouts
  3. [[logout-java-configuration]]
  4. == Logout Java/Kotlin Configuration
  5. When using the `{security-api-url}org/springframework/security/config/annotation/web/configuration/WebSecurityConfigurerAdapter.html[WebSecurityConfigurerAdapter]`, logout capabilities are automatically applied.
  6. The default is that accessing the URL `/logout` will log the user out by:
  7. - Invalidating the HTTP Session
  8. - Cleaning up any RememberMe authentication that was configured
  9. - Clearing the `SecurityContextHolder`
  10. - Redirect to `/login?logout`
  11. Similar to configuring login capabilities, however, you also have various options to further customize your logout requirements:
  12. .Logout Configuration
  13. [tabs]
  14. ======
  15. Java::
  16. +
  17. [source,java,role="primary"]
  18. ----
  19. protected void configure(HttpSecurity http) throws Exception {
  20. http
  21. .logout(logout -> logout // <1>
  22. .logoutUrl("/my/logout") // <2>
  23. .logoutSuccessUrl("/my/index") // <3>
  24. .logoutSuccessHandler(logoutSuccessHandler) // <4>
  25. .invalidateHttpSession(true) // <5>
  26. .addLogoutHandler(logoutHandler) // <6>
  27. .deleteCookies(cookieNamesToClear) // <7>
  28. )
  29. ...
  30. }
  31. ----
  32. Kotlin::
  33. +
  34. [source,kotlin,role="secondary"]
  35. -----
  36. override fun configure(http: HttpSecurity) {
  37. http {
  38. logout {
  39. logoutUrl = "/my/logout" // <1>
  40. logoutSuccessUrl = "/my/index" // <2>
  41. logoutSuccessHandler = customLogoutSuccessHandler // <3>
  42. invalidateHttpSession = true // <4>
  43. addLogoutHandler(logoutHandler) // <5>
  44. deleteCookies(cookieNamesToClear) // <6>
  45. }
  46. }
  47. }
  48. -----
  49. ======
  50. <1> Provides logout support.
  51. This is automatically applied when using `WebSecurityConfigurerAdapter`.
  52. <2> The URL that triggers log out to occur (default is `/logout`).
  53. If CSRF protection is enabled (default), then the request must also be a POST.
  54. For more information, please consult the {security-api-url}org/springframework/security/config/annotation/web/configurers/LogoutConfigurer.html#logoutUrl-java.lang.String-[Javadoc].
  55. <3> The URL to redirect to after logout has occurred.
  56. The default is `/login?logout`.
  57. For more information, please consult the {security-api-url}org/springframework/security/config/annotation/web/configurers/LogoutConfigurer.html#logoutSuccessUrl-java.lang.String-[Javadoc].
  58. <4> Let's you specify a custom `LogoutSuccessHandler`.
  59. If this is specified, `logoutSuccessUrl()` is ignored.
  60. For more information, please consult the {security-api-url}org/springframework/security/config/annotation/web/configurers/LogoutConfigurer.html#logoutSuccessHandler-org.springframework.security.web.authentication.logout.LogoutSuccessHandler-[Javadoc].
  61. <5> Specify whether to invalidate the `HttpSession` at the time of logout.
  62. This is *true* by default.
  63. Configures the `SecurityContextLogoutHandler` under the covers.
  64. For more information, please consult the {security-api-url}org/springframework/security/config/annotation/web/configurers/LogoutConfigurer.html#invalidateHttpSession-boolean-[Javadoc].
  65. <6> Adds a `LogoutHandler`.
  66. `SecurityContextLogoutHandler` is added as the last `LogoutHandler` by default.
  67. <7> Allows specifying the names of cookies to be removed on logout success.
  68. This is a shortcut for adding a `CookieClearingLogoutHandler` explicitly.
  69. [NOTE]
  70. ====
  71. Logouts can of course also be configured using the XML Namespace notation.
  72. Please see the documentation for the xref:servlet/appendix/namespace/http.adoc#nsa-logout[ logout element] in the Spring Security XML Namespace section for further details.
  73. ====
  74. Generally, in order to customize logout functionality, you can add
  75. `{security-api-url}org/springframework/security/web/authentication/logout/LogoutHandler.html[LogoutHandler]`
  76. and/or
  77. `{security-api-url}org/springframework/security/web/authentication/logout/LogoutSuccessHandler.html[LogoutSuccessHandler]`
  78. implementations.
  79. For many common scenarios, these handlers are applied under the
  80. covers when using the fluent API.
  81. [[ns-logout]]
  82. == Logout XML Configuration
  83. The `logout` element adds support for logging out by navigating to a particular URL.
  84. The default logout URL is `/logout`, but you can set it to something else using the `logout-url` attribute.
  85. More information on other available attributes may be found in the namespace appendix.
  86. [[jc-logout-handler]]
  87. == LogoutHandler
  88. Generally, `{security-api-url}org/springframework/security/web/authentication/logout/LogoutHandler.html[LogoutHandler]`
  89. implementations indicate classes that are able to participate in logout handling.
  90. They are expected to be invoked to perform necessary clean-up.
  91. As such they should
  92. not throw exceptions.
  93. Various implementations are provided:
  94. - {security-api-url}org/springframework/security/web/authentication/rememberme/PersistentTokenBasedRememberMeServices.html[PersistentTokenBasedRememberMeServices]
  95. - {security-api-url}org/springframework/security/web/authentication/rememberme/TokenBasedRememberMeServices.html[TokenBasedRememberMeServices]
  96. - {security-api-url}org/springframework/security/web/authentication/logout/CookieClearingLogoutHandler.html[CookieClearingLogoutHandler]
  97. - {security-api-url}org/springframework/security/web/csrf/CsrfLogoutHandler.html[CsrfLogoutHandler]
  98. - {security-api-url}org/springframework/security/web/authentication/logout/SecurityContextLogoutHandler.html[SecurityContextLogoutHandler]
  99. - {security-api-url}org/springframework/security/web/authentication/logout/HeaderWriterLogoutHandler.html[HeaderWriterLogoutHandler]
  100. Please see xref:servlet/authentication/rememberme.adoc#remember-me-impls[Remember-Me Interfaces and Implementations] for details.
  101. Instead of providing `LogoutHandler` implementations directly, the fluent API also provides shortcuts that provide the respective `LogoutHandler` implementations under the covers.
  102. E.g. `deleteCookies()` allows specifying the names of one or more cookies to be removed on logout success.
  103. This is a shortcut compared to adding a `CookieClearingLogoutHandler`.
  104. [[jc-logout-success-handler]]
  105. == LogoutSuccessHandler
  106. The `LogoutSuccessHandler` is called after a successful logout by the `LogoutFilter`, to handle e.g.
  107. redirection or forwarding to the appropriate destination.
  108. Note that the interface is almost the same as the `LogoutHandler` but may raise an exception.
  109. The following implementations are provided:
  110. - {security-api-url}org/springframework/security/web/authentication/logout/SimpleUrlLogoutSuccessHandler.html[SimpleUrlLogoutSuccessHandler]
  111. - HttpStatusReturningLogoutSuccessHandler
  112. As mentioned above, you don't need to specify the `SimpleUrlLogoutSuccessHandler` directly.
  113. Instead, the fluent API provides a shortcut by setting the `logoutSuccessUrl()`.
  114. This will setup the `SimpleUrlLogoutSuccessHandler` under the covers.
  115. The provided URL will be redirected to after a logout has occurred.
  116. The default is `/login?logout`.
  117. The `HttpStatusReturningLogoutSuccessHandler` can be interesting in REST API type scenarios.
  118. Instead of redirecting to a URL upon the successful logout, this `LogoutSuccessHandler` allows you to provide a plain HTTP status code to be returned.
  119. If not configured a status code 200 will be returned by default.
  120. [[jc-logout-references]]
  121. == Further Logout-Related References
  122. - <<ns-logout, Logout Handling>>
  123. - xref:servlet/test/mockmvc/logout.adoc#test-logout[ Testing Logout]
  124. - xref:servlet/integrations/servlet-api.adoc#servletapi-logout[ HttpServletRequest.logout()]
  125. - xref:servlet/authentication/rememberme.adoc#remember-me-impls[Remember-Me Interfaces and Implementations]
  126. - xref:servlet/exploits/csrf.adoc#servlet-considerations-csrf-logout[ Logging Out] in section CSRF Caveats
  127. - Section xref:servlet/authentication/cas.adoc#cas-singlelogout[ Single Logout] (CAS protocol)
  128. - Documentation for the xref:servlet/appendix/namespace/http.adoc#nsa-logout[ logout element] in the Spring Security XML Namespace section