Interactive Application Architecture Patterns - 0 views
Learning Google App Engine and GWT Best Practices: Converting to the MVP architecture - 1 views
GUI Architectures - 1 views
ExtGWT, mvp4g, Google App Engine: GWT App Architecture Best Practices (slides+text) Part 1 - 0 views
Google I/O 2010 - 1 views
overlook - Tech Blog - 2 views
-
The main issue in MVC is that these three elements are tighly bound together: the controller has to register to both the model and the view (and unregister if either changes), and when a view serves multiple controllers or a controller uses multiple models, that becomes quickly a mess.
-
MVP approach is more message-oriented. All messages (events) are fired on a single EventBus that is shared by all Presenters. Each presenter listens to events of interest, and fires new events according to actions. So a change in the in the EmployeeModel may be fired with an EmployeeModelChangedEvent, instead of attaching a listener to the model object. And we can easily create new Presenters that receive that same event and react accordingly.
-
The magnitude of such a shift is great: the model is no more the center and source of events (which would require special care in attaching and detaching to a specific instance), but it more a passive container of data, which may be copied, proxied, transformed, cached, without the GWT appliction any special care.Since the model is more a container of data ment for communication, I've highlighted the fact that it needs to be Serializable.
- ...11 more annotations...