Uploaded image for project: 'Tapestry 5'
  1. Tapestry 5
  2. TAP5-374

Persistent (@Persist) fields not set correctly between requests if they are initialised from pageAttached() method

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 5.0.15, 5.0.16
    • 5.1.0.1
    • tapestry-core
    • None

    Description

      I am seeing unexpected behaviour when using persistent fields and the
      page lifecycle method, pageAttached(), (T 5.0.15).

      I have a persistent field,

      @Persist
      private Map myMap;

      I also have a page lifecycle method,

      void pageAttached() {
      if (myMap == null)

      { myMap = new HashMap(); }

      }

      I expect that when the page first loads and myMap is null then myMap
      will be initialised to an empty map, thereafter I expect anything I put
      into the map to persist across requests.

      What I actually see is that, if the above pageAttached method is present
      then any data that I put into myMap does not persist across requests
      (the map is always empty). I was not expecting this.

      If I do not initialise myMap in pageAttached then data does persist.

      By design or bug?

      Attachments

        Activity

          People

            hlship Howard Lewis Ship
            joelhalbert Joel Halbert
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: