Development and design of GWT templates

What patterns are most popular with experienced GWT developers? I heard that the effective development of this structure often has to use different design patterns. I would like to know more about this. If possible with a brief explanation, example or link. Thanks in advance!

+5
source share
1 answer

We use MVP: https://developers.google.com/web-toolkit/articles/mvp-architecture . This is great for organizing large projects. MVP is mainly about client side organization.

You can use this in conjunction with Activity and Places to manage your browsing history: https://developers.google.com/web-toolkit/doc/latest/DevGuideMvpActivitiesAndPlaces

Your server-side templates will usually follow the standard Java servlet model. If you are using Hibernate / Objectify or some similar ORM solution, take a look at the GWT RequestFactory.

+4
source

All Articles