There sure is a mismatch; component based frameworks emerged because
of the mismatch Model 2 frameworks with page parts. Requests in Model
2 frameworks map to page wide actions. The controller/ view handler
has to ensure the state of all elements of the page are kept in sync
and rendered correctly. That's okay for simple pages, but if you have
pages with multiple, independent parts (think e.g. of a pageable list
being one of those) you're in a mess and generally have to use hackish
solutions like command chaining and 'interception'. With component
based frameworks, you should be able to create isolated parts
(components) that react on events, keep state and render independently
of the other parts of the page, making it easier and more elegant to
write applications with, and also make reuse an option (because
components are self contained). That's the whole idea of Model 2 vs
CBD.

Eelco


On 11/9/05, Laurent PETIT <[EMAIL PROTECTED]> wrote:
> Hello,
>
> On 11/7/05, Steven McNeel <[EMAIL PROTECTED]> wrote:
> > I consider this sort of thing as analogous to MVC "Front Controller" (aka
> > Dispatcher) logic.  I'm basically unclear as to where that logic belongs in
> > a Wicket app.
>
> The fact is, while I'm still new in the area of Components based web
> frameworks, I think there is a mismatch between the Model 2 way of
> doing things and the Component oriented way ... ?
>
> Could you precise your need ? Because you original post was so general
> I may have missed the point ?
>
> thanks,
>
> --
> laurent
>
>
> -------------------------------------------------------
> SF.Net email is sponsored by:
> Tame your development challenges with Apache's Geronimo App Server. Download
> it for free - -and be entered to win a 42" plasma tv or your very own
> Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
> _______________________________________________
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>


-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to