Spring + load balancing / clustering

I am working on a webapp project, and we are considering deploying it on multiple servers.

What solution do you recommend for clustering / load balancing with Spring?

What problems should be considered?

For example: How do singletones behave in a cluster of machines ? What about session replication? Are there any other issues to consider?

+5
source share
1 answer

Here is a list of possible issues (not necessarily Spring-related):

  • stateful beans - beans , , , - , , . . JVM ? terracotta

  • - , . node , . ? .

  • HTTP- - , . , .

  • - , , (, , )?

+10

All Articles