Icy wrote:
*** What is the "best practise" to not instanciate "page aggregating panels"
all the time? ***

This isn't really a Wicket question.

Your page is slow because doing database/remote operations is slow. It has nothing to do with creating Panels, but everything to do with the database access you're doing in the constructor of those Panels.

You need to break those operations out into a service layer that can cache the results, then use that service layer in your constructor.

Regards,

Al

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to