Uses of Interface
org.springframework.web.server.session.WebSessionManager
Packages that use WebSessionManager
Package
Description
Mock implementations of Spring's reactive server web API abstractions.
Support for testing Spring WebFlux server endpoints via
WebTestClient
.Implementations to adapt to the underlying
org.springframework.http.client.reactive
reactive HTTP adapter
and HttpHandler
.Auxiliary interfaces and implementation classes for
WebSession
support.-
Uses of WebSessionManager in org.springframework.mock.web.server
Methods in org.springframework.mock.web.server with parameters of type WebSessionManagerModifier and TypeMethodDescriptionMockServerWebExchange.Builder.sessionManager
(WebSessionManager sessionManager) Provide aWebSessionManager
instance 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 WebSessionManagerModifier and TypeMethodDescription<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 WebSessionManagerModifier and TypeMethodDescriptionHttpWebHandlerAdapter.getSessionManager()
Return the configuredWebSessionManager
.Methods in org.springframework.web.server.adapter with parameters of type WebSessionManagerModifier and TypeMethodDescriptionWebHttpHandlerBuilder.sessionManager
(WebSessionManager manager) Configure theWebSessionManager
to set on theWebServerExchange
.void
HttpWebHandlerAdapter.setSessionManager
(WebSessionManager sessionManager) Configure a customWebSessionManager
to use for managing web sessions.Constructors in org.springframework.web.server.adapter with parameters of type WebSessionManagerModifierConstructorDescriptionDefaultServerWebExchange
(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 WebSessionManagerModifier and TypeClassDescriptionclass
Default implementation ofWebSessionManager
delegating to aWebSessionIdResolver
for session id resolution and to aWebSessionStore
.