Uploaded image for project: 'MyFaces Core'
  1. MyFaces Core
  2. MYFACES-1960

Make the state-manager (JspStateManagerImpl) behaviour storing the previous view-states in MyFaces optional

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 1.1.6, 1.2.4
    • 1.2.5
    • None
    • None

    Description

      Actually the class org.apache.myfaces.application.jsp.JspStateManagerImpl.SerializedViewCollection store the old views using:

      protected Map getOldSerializedViewsMap() {
      if (_oldSerializedViews == null)

      { _oldSerializedViews = new ReferenceMap(AbstractReferenceMap.WEAK, AbstractReferenceMap.WEAK, true); }

      return _oldSerializedViews;
      }

      Right now, this part is used when server side saving is enabled, as a second level cache. If the view is not available on _serializedViews (the map that holds the views in first place) , it tries to get it from _oldSerializedViews. If it is found use it but if not just return null.

      The default should be that this behaviour is off (contrary to the current case).

      It is more, there should be the possibility to use soft references instead weak references, so the user can tune this by its own needs.

      The idea for solve this is create a param called org.apache.myfaces.CACHE_OLD_VIEWS_IN_SESSION_MODE with the possible values:

      soft: use an ReferenceMap(AbstractReferenceMap.SOFT, AbstractReferenceMap.SOFT, true)
      weak: use an ReferenceMap(AbstractReferenceMap.WEAK, AbstractReferenceMap.WEAK, true)
      off, no: default, no cache is used

      The changes should be applied on 1.1 and 1.2.

      Attachments

        1. MYFACES-1960-JSF11.patch
          5 kB
          Leonardo Uribe
        2. MYFACES-1960-JSF12.patch
          5 kB
          Leonardo Uribe
        3. MYFACES-1960-JSF11-v2.patch
          7 kB
          Leonardo Uribe
        4. MYFACES-1960-JSF12-v2.patch
          7 kB
          Leonardo Uribe

        Activity

          People

            lu4242 Leonardo Uribe
            lu4242 Leonardo Uribe
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: