bjest, returned by iBatis,
before making it available to Tapestry.
Cheers,
-Original Message-
From: Paul Cantrell [mailto:[EMAIL PROTECTED]
Sent: den 19 maj 2006 16:57
To: Tapestry users
Subject: Re: Persistence misbehavior in T4
Is the Bean shared across pages? If it is a Tapestry @Bean, I r
Regards,
-Original Message-
From: Paul Cantrell [mailto:[EMAIL PROTECTED]
Sent: den 18 maj 2006 19:39
To: Tapestry users
Subject: Re: Persistence misbehavior in T4
A few general points:
-- An "= null" initializer for a non-final field is redundant in
all cases.
-- You shoul
Martin: ...sounds like you simply forgot "CategoryBrowser implements
PageDetachListener"
No Martin, I didn't. It's through PageDetachListener interface that i become
acquainted with pageDetach().
Thanks for your time.
-Original Message-
Hmm... sounds like you simply forgot "CategoryBro
ds,
-Original Message-
From: Paul Cantrell [mailto:[EMAIL PROTECTED]
Sent: den 18 maj 2006 19:39
To: Tapestry users
Subject: Re: Persistence misbehavior in T4
A few general points:
-- An "= null" initializer for a non-final field is redundant in all cases.
-- You should gen
Hmm... sounds like you simply forgot "CategoryBrowser implements
PageDetachListener". Tapestry would then not understand that you want it to
call pageDetached(...).
Martin
On Thursday 18 May 2006 19:26, Firas A. wrote:
> Hello Everyone!
>
> I have a class, CategoryBrowser of type BasePage which
A few general points:
-- An "= null" initializer for a non-final field is redundant in all
cases.
-- You should generally not need to synchronize access to instance
fields of a page.
Now a question:
In the CategoryBrowser.pageDetached() the ProductCategory property
is set to null.
Don'
Hello Everyone!
I have a class, CategoryBrowser of type BasePage which has a transient
property, a JavaBean called ProductCategory. ProductCategory makes use of an
instance field:
private List subCategories = null;
This list is initialized in CategoryBrowser upon every request. Every access
to