On Mon, 18 Feb 2013 20:38:03 -0300, John <j...@quivinco.com> wrote:

If a field uses the FLASH persist constant but is not a @Property is it the same as being persisted in the session with plain @Persist because the field is not read by the template directly to take it out of the session?

No. @Persist with @Property and @Persist without @Property work absolutely the same. There's absolutely no relationship between @Persist and @Property. Using one won't affect the usage of the other in any way. @Property is just a Tapestry way of having a getter and a setter for a field without you writing them.

I'm concerned that my useage below will leave a lot of clutter in the session.

    @Persist(PersistenceConstants.FLASH)
    private List<ColleagueBean> venueColleagueBeansFlash;

This clutter won't happen.

--
Thiago H. de Paula Figueiredo

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

Reply via email to