jsf-stateless

JSF State Saving initially to server & on session timeout transfer to client?

孤者浪人 提交于 2019-12-30 05:00:27
问题 Are there any state saving method that would allow JSF application to intially save state data on server but after the session expire time interval , that state is transferred to client so that app is always responsive even after the session timeout on the server & memory is better managed on server? Or any way this could be implemented? But I expect that this should be a part of the JSF specification ! Edit After suggestion by BalusC, I'm highly impressed with the Stateless JSF principles &

JSF State Saving initially to server & on session timeout transfer to client?

风流意气都作罢 提交于 2019-11-30 14:53:20
Are there any state saving method that would allow JSF application to intially save state data on server but after the session expire time interval , that state is transferred to client so that app is always responsive even after the session timeout on the server & memory is better managed on server? Or any way this could be implemented? But I expect that this should be a part of the JSF specification ! Edit After suggestion by BalusC, I'm highly impressed with the Stateless JSF principles & the current implementation for it . If anyone else here is also interested in stateless JSF being added