Horizontal scaling of JSF 2.0 application

前端 未结 3 1350
被撕碎了的回忆
被撕碎了的回忆 2021-02-09 02:03

Given that JavaServer Faces is inherently stateful on the server side, what methods are recommended for horizontally scaling a JSF 2.0 application?

If an application run

3条回答
  •  轮回少年
    2021-02-09 02:34

    This can be achieved by configuring your load balancer in sticky session mode.

    More info

    This way all your subsequent requests are sent to the same application server.

提交回复
热议问题