Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im currently testing on JSF Bean that make use of ViewScope

I notice this behaviour.

When having this button :

<p:commandButton value="Submit Data to Server" 
    ajax="false" update="debugPanel" />

I can see the postconstruct happens only once, and the submission triggered by this button doest trigger postconstruct, which is correct, since it's returning to the same view.

But when i add modify my button into this :

<p:commandButton value="Submit Data to Server" 
    ajax="false" update="debugPanel" 
    action="viewScope2.xhtml?faces-redirect=false"/>

I can see that the postconstruct method gets called for every submission, which means the bean doesnt retain it's state, although it's actualy returning to the same view. I thought this is because of the redirectin, so i omitted it, and the button becomes something like this :

<p:commandButton value="Submit Data to Server" 
    ajax="false" update="debugPanel" 
    action="viewScope2.xhtml"/>

But still, the postconstruct method gets called for every submission, which is not desireable.

Is it possible to have this idealism :

No matter whether it's explicitly or implicily defined (via attribute or via return "myview.xhtml" in action method) , whether it's using redirect or not, the viewscoped bean will always retain it's state when returning to the same view.

Please share your opinions !

Thank you .....

share|improve this question
Did you implement stackoverflow.com/questions/5416070/jsf-2-and-post-redirect-get ? That can be the cause. – BalusC Mar 25 '11 at 10:34
@BalusC: No, i did not in this case. Since without explicitly stating the target view, it still works fine, which is the first case in the original post. – Albert Kam Mar 26 '11 at 2:20

1 Answer

up vote 0 down vote accepted

Basically all these questions have been answered in this entry .. Thank you !

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.