Choosing Java Spring as a scalable server-side framework for a large website

前端 未结 6 2097
北荒
北荒 2021-02-10 07:50

I\'m currently facing a dilema regarding the appropriate server-side framework to use.

Basically, I want to choose the best framework for building a large website to ser

6条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-10 08:22

    Spring is a good framework. However, by itself it is not going to solve your scalability problems (and no other framework would).

    To scale heavy load on servers you need to make sure that your servers are stateless or use load balancers with sticky sessions. To reduce load on database you will need caches. No framework will solve it for you.

    In other words, think about overall system design rather than specific coding framework.

提交回复
热议问题