In the web.xml, I've the following:
<context-param>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>server</param-value>
</context-param>
This setting effects all jsf managed beans in my app. I've one particular bean that I want the state to be client. Is there a way to have only this one bean with set with client as STATE_SAVING_METHOD and the rest with server?