On Mon, 15 Sep 2014 19:25:21 -0300, Boris Horvat <horvat.z.bo...@gmail.com> wrote:

Reading a tapestry documentation I get that page only has one instance, so does this mean that once I place something in the component's parameter it is unable to determine in which session it should be place?

No. Tapestry itself never persists parameter values in the session. Parameters are completely independent from the session. In addition, Tapestry uses a single page instance for all requests, but the page state (non-annotated fields) is actually stored in a per-request (per-thread) map, all this done transparently and automatically, so the state of one request doesn't affect other requests at all.

--
Thiago H. de Paula Figueiredo
Tapestry, Java and Hibernate consultant and developer
http://machina.com.br

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to