Hi Doug, It is hard to say without knowing more about your app. As a rule, I never keep references to data in my components. Components have only refs to services (injectable) and all the data are encapsulated by IModels of one sort or another. The IModels always implement IDetachable and keep only the minumum of info necessary to rehydrate the data. Usually, LoadableDetachableModel provides all the functionality I need. Check to make sure you have followed these rules of thumb. You should be ok if you have.
best, jim On 11/1/07, Doug Leeper <[EMAIL PROTECTED]> wrote: > > That is good that you do the same thing...so it must be my implementation > that is wrong. I use an optimizer to find the issue. Do you recommend a > reasonable one? > > Also, is it possible to introspect the serialized data? > > Also, I am using Hibernate. Would classes obtained via Hibernate that are > local objects to a page be a problem? > -- > View this message in context: > http://www.nabble.com/Best-practice-question-tf4732767.html#a13534427 > Sent from the Wicket - User mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
