Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Annotation

Method Name

When Called

@PageLoaded

pageLoaded()

After the page is fully loaded

@PageAttached

pageAttached()

After the page is attached to the request. Deprecated in Tapestry 5.3

@PageDetached

pageDetached()

AFter the page is detached from the request. Deprecated in Tapestry 5.3

Comparison to JavaServer Pages

...

Page Pool Configuration

Note

As of This related to versions of Tapestry prior to 5.2, Tapestry does not employ page pooling by default. Modern Tapestry uses an alternate approach that allows a single page instance to be shared across many request processing threads.

In Tapestry 5.0 and 5.1, a page pool is used to store page instances. The pool is "keyed" on the name of the page (such as "start") and the locale for the page (such as "en" or "fr").

...