Uses of Interface
org.springframework.web.server.session.WebSessionManager
Packages that use WebSessionManager Package Description org.springframework.mock.web.server Mock implementations of Spring's reactive server web API abstractions.org.springframework.test.web.reactive.server Support for testing Spring WebFlux server endpoints viaWebTestClient.org.springframework.web.server.adapter Implementations to adapt to the underlyingorg.springframework.http.client.reactivereactive HTTP adapter andHttpHandler.org.springframework.web.server.session Auxiliary interfaces and implementation classes forWebSessionsupport.Uses of WebSessionManager in org.springframework.mock.web.server
Methods in org.springframework.mock.web.server with parameters of type WebSessionManager Modifier and Type Method Description MockServerWebExchange.BuilderMockServerWebExchange.Builder. sessionManager(WebSessionManager sessionManager)Provide aWebSessionManagerinstance to use with the exchange.Uses of WebSessionManager in org.springframework.test.web.reactive.server
Methods in org.springframework.test.web.reactive.server with parameters of type WebSessionManager Modifier and Type Method Description <T extends B>
TWebTestClient.MockServerSpec. webSessionManager(WebSessionManager sessionManager)Provide a session manager instance for the mock server.Uses of WebSessionManager in org.springframework.web.server.adapter
Methods in org.springframework.web.server.adapter that return WebSessionManager Modifier and Type Method Description WebSessionManagerHttpWebHandlerAdapter. getSessionManager()Return the configuredWebSessionManager.Methods in org.springframework.web.server.adapter with parameters of type WebSessionManager Modifier and Type Method Description WebHttpHandlerBuilderWebHttpHandlerBuilder. sessionManager(WebSessionManager manager)Configure theWebSessionManagerto set on theWebServerExchange.voidHttpWebHandlerAdapter. setSessionManager(WebSessionManager sessionManager)Configure a customWebSessionManagerto use for managing web sessions.Constructors in org.springframework.web.server.adapter with parameters of type WebSessionManager Constructor Description DefaultServerWebExchange(ServerHttpRequest request, ServerHttpResponse response, WebSessionManager sessionManager, ServerCodecConfigurer codecConfigurer, LocaleContextResolver localeContextResolver)Uses of WebSessionManager in org.springframework.web.server.session
Classes in org.springframework.web.server.session that implement WebSessionManager Modifier and Type Class Description classDefaultWebSessionManagerDefault implementation ofWebSessionManagerdelegating to aWebSessionIdResolverfor session id resolution and to aWebSessionStore.