I'm not seeing anything in that Q&A to indicate that the G+ team
evaluated and rejected GWT, just that the engineers who built it
happened to use Closure Tools:
"why GWT technology has not used in Google+"
"Nothing against GWT, but the engineers who started building Google+
didn't use it, and in general projects end up all-GWT or no-GWT, and
this was the latter."
http://googlecode.blogspot.com/2009/11/introducing-closure-tools.html
http://code.google.com/closure/
http://code.google.com/closure/faq.html#gwt
http://derekslager.com/blog/posts/2010/06/google-closure-introduction.ashx
> *"we often render our Closure templates server-side so the page renders
> before any JavaScript is loaded, then the JavaScript finds the right DOM
> nodes and hooks up event handlers, etc. to make it responsive (as a result,
> if you're on a slow connection and you click on stuff really fast, you may
> notice a lag before it does anything, but luckily most people don't run into
> this in practice)."*
>
> *"The cool thing about Closure templates is they can be compiled into both
> Java and JavaScript. So we use Java server-side to turn the templates into
> HTML, but we can also do the same in JavaScript client-side for dynamic
> rendering. For instance, if you type in a profile page URL directly, we'll
> render it server-side, but if you go to the stream say and navigate to
> someone's profile page, we do it with AJAX and render it client-side using
> the same exact template. "*
>
> Going from the tone of the above two quotes, it seems to me that the lack of
> server-side templating system in GWT (GWT has client-side templating in the
> form of UiBinder but not server-side templating) , could have been *one of
> the reasons* for not choosing GWT for the Google+ project.