Merge branch '5.8.x'

This commit is contained in:
Rob Winch 2022-10-27 15:39:23 -05:00
commit 855d6b6326

View File

@ -19,11 +19,8 @@ DefaultSecurityFilterChain springSecurity(HttpSecurity http) throws Exception {
.Kotlin
[source,kotlin,role="secondary"]
----
@EnableWebSecurity
class SecurityConfig {
@Bean
open fun springSecurity(http: HttpSecurity): SecurityFilterChain {
@Bean
open fun springSecurity(http: HttpSecurity): SecurityFilterChain {
val httpRequestCache = HttpSessionRequestCache()
httpRequestCache.setMatchingRequestParameterName("continue")
http {
@ -32,7 +29,6 @@ class SecurityConfig {
}
}
return http.build()
}
}
----