You can build the full page with GWT but you have to keep in mind, that it
will bring some problems too.
The main problem will be Search Engine. You will have to rely on htmlunit to
fix it (generates static version of webpages).

The other problem, is that pages will be a bit slower to load (for two
pages, it should not be too much) because you have to load a piece of
javascript that will be interpreted on the client before rendering. However,
you can still optimize it by including the javascript content inside your
html/jsp/php page. You can use code splitting to improve it too.

In my opinion, it is really interresting to use GWT if this is for a project
that is going to grow. GWT brings good developments models/tools (MVP,
activities, eventbus) and good practice (unit tests, dependency injection).
But it can be a lost of time if all these points are not thought before
starting.

We released our website in full gwt (http://www.weecod.com), so it is
possible to build a full website with the framework, but it can be really
slower depending of the size of the project.

In my opinion, for two pages, just keep simple pages with gwt modules. But
if you want to build more page later, you can think of a full integration.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to