Reputation: 4597
We are developing a Java EE application with Spring. The application will be deployed across multiple web servers with hardware load balancer. Here are my doubts. Please clarify.
EDIT: Removed spring.
Upvotes: 1
Views: 1207
Reputation: 4989
What you're referring to here are "sticky sessions" and your load balancer should support them. It alllows the load balancer to use the session ID to route all requests for a session to the same server.
Upvotes: 3