Does view scope bean survive Navigation JSF

前端 未结 3 709
迷失自我
迷失自我 2020-11-28 10:31

I am quite confused with the view scope. I thought it could survive a JSF navigation to another page (no redirect, obviously), but it doesn\'t. So what\'s the advantage to u

3条回答
  •  一生所求
    2020-11-28 11:25

    The advantage is that the bean survives postbacks to the same view. You don't need to preserve any data yourself anymore when used in rendered attributes or as model for h:dataTable or as hidden inputs, etcetera. In the past, a lot of hacks were been used to go around this.

    A view scoped bean lives as long as you interact with the same view (i.e. you return void or null in bean action method). When you navigate away to another view, e.g. by clicking a link or by returning a different action outcome, then the view scoped bean will be trashed by end of render response and not be available in the next request.

    See also:

    • Benefits and pitfalls of @ViewScoped
    • Any disadvantages of JSF 2.0?

提交回复
热议问题