9

Has anyone found/written any tutorials on the official GWT MVP framework that's found in the GWT 2.1 RC?

JP Richardson
  • 38,609
  • 36
  • 119
  • 151
  • I give some explanation to my implementation of the pattern in this thread: http://stackoverflow.com/questions/2832779/is-there-a-recommended-way-to-use-the-observer-pattern-in-mvp-using-gwt/2832919#2832919 Maybe that could be of some help? – Mia Clarke Jul 07 '10 at 09:06

6 Answers6

5

Google have updated their large scale web application development series with a sample application and extensive documentation that demonstrates their new MVP support in GWT 2.1 (Model/Activity/Views as they call it now)

Lars Tackmann
  • 20,275
  • 13
  • 66
  • 83
3

Not a tutorial but I wrote one sample that one can use as a skeleton. http://code.google.com/p/hello-goodbye-mvp/

zawhtut
  • 8,335
  • 5
  • 52
  • 76
2

A promising series of tutorials on GWT 2.1 MVP started with this article:

http://www.over-look.com/site/index.php/documentation/techblog/item/gwt-2-1-tutorial-1-mvp-the-model

John
  • 21
  • 2
  • Wow. That looks a bit convoluted in regards to the model. I hope the Presenter isn't like that or else I'll just use GWTP. – JP Richardson Aug 06 '10 at 03:38
1

This blog shows how to use Activities and Places and provides similiraties with Gmail (what is a place and what is an activity). I suggest you to read the different post and the questions and answers from the comments because they are quite enlightening.

web

ramon_salla
  • 1,587
  • 1
  • 17
  • 35
0

Google has tutorial on Official GWT MVP Framework, visit below link to start/view that tutorial: https://developers.google.com/web-toolkit/articles/mvp-architecture

//Fahim Aslam | Software Engineer

0

Try this. Part 2 of that article has a link to a sample project download.

Also, watch this presentation by Ray Ryan. I highly recommend to download a PDF file with slides, because, for whatever reason, the cameraman decided to focus on Ray, instead of code.

Alexander Pogrebnyak
  • 44,836
  • 10
  • 105
  • 121
  • I've watched both the presentation and have read the articles. The presentation is probably the clearest in documentation in regards to the new MVP framework, whereas the articles you referenced aren't quite like the new MVP framework. In fact, the new MVP framework uses new terminology. Instead of "Presenter", they are called "Activities." I think part of the problem is that Ray Ryan himself admitted that this framework isn't even finished yet. – JP Richardson Jun 17 '10 at 22:59
  • @anonymous. Care to explain downwote? – Alexander Pogrebnyak Aug 05 '10 at 16:27
  • I didn't downvote you, but JP is asking about the new MVP framework coming in GWT 2.1. Your links aren't about that. – Matthew H Aug 16 '10 at 14:05