intermediateSession Management: Timeout, Concurrency & Fixation
How would you handle sessions in a load-balanced, multi-instance deployment using stateful (session-cookie) authentication?
Either configure sticky sessions at the load balancer (always routing a given client to the same backend instance) or externalize session storage using something like Spring Session backed by Redis, so any instance can serve any request by reading the shared session store — the latter is generally preferred for resilience, since sticky sessions break if that one instance goes down.
This is a Pro chapter
Sign in, then upgrade to Pro or Power to unlock this and the full Spring Ecosystem Mastery library.
How would you handle sessions in a load-balanced, multi-instance deployment using stateful (session-cookie) authentication?