I have a Web App, with Spring Security, and it's behind a round robin load balancer, so whenever the load balancer jumps from server A to Server B the session lost.
We don't want to use Remember-Me cookies, maybe is paranoia, but the data is too sensible.
And we can't configure the load balancer to have sticky sessions, (that's another department, and asking them to configure the load balancer to do this is our last option)
Is it possible to configure the xmls of Spring, to never go outside the server the user originally fell in?
So all the petitions the user make in server A always gonna be served by Server A ?