Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>When server side state saving is used (which is default) than those two parameters can be used to configure maximum number of logical and actual views.</p> <p>Logical view is top level view which is created on every GET request (for example when you open page in new browser window or tab, entering address in address bar of browser, iframes...). Each logical view can have some number of associated actual views. Actual views are created as user navigate through your pages with standard JSF mechanisms (for example if you navigate to page returned from <code>action</code> methods in <code>commandButton</code>). Both queues of views use LRU algorithm to decide when view will be removed, and maximum number of those queues are limited by values of these two parameters.</p> <p>So, <code>com.sun.faces.numberOfViewsInSession</code> defines the maximum number of JSF views stored in the session for per logical view, and <code>com.sun.faces.numberOfLogicalViews</code> defines the maximum number of logical views to store per session.</p> <p>According to information you provided a suspect that configuration of <code>com.sun.faces.numberOfViewsInSession</code> solved your problem, but you must further investigate why is created so many views.</p> <p>Additional link:</p> <ul> <li><a href="https://wikis.oracle.com/display/GlassFish/JavaServerFacesRI#JavaServerFacesRI-WhatarethedifferencesbetweenServerandClientsidestatesavingandwhatarethebenefits%2Fdrawbacksofeach%3F" rel="nofollow">What are the differences between Server and Client side state saving and what are the benefits/drawbacks of each?</a></li> </ul>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload