JSF2 with GAE and ViewScoped ManagedBean

后端 未结 1 1359
旧时难觅i
旧时难觅i 2021-01-03 04:25

I managed to get a prototype with JSF2 get working at Googles AppEngine following this tutorial. Now I have some odd behavior with a ViewScoped ManagedBean:

         


        
相关标签:
1条回答
  • 2021-01-03 05:05

    Normally I don't answer my questions and I only rate this answer as a workaround and not as the correct answer. Event if I don't like client state saving, this seems to fix the odd behavior. But I have to check this in detail:

    <context-param>
      <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
      <param-value>client</param-value>
    </context-param>
    

    Perhaps we should wait until JAVASERVERFACES-1886 is resolved.

    0 讨论(0)
提交回复
热议问题