java - Developing traditional style webapps with GWT -
in many jvm web frameworks survies , indeed.com trends graphs, gwt looks (or among top) popular jvm framework.
afaik, gwt excels when application 1 page app -to degree of course- (like gmail, google reader ..)
does mean new developed java webapps 1 page apps (not traditional request-new page response)?
possible develop springmvc or struts2 style webapps gwt? or not recommended?
absolutely, possible build struts apps gwt; @ level gwt is, convenient way of writing javascript (in perl days, called 'syntactic sugar').
you can still use gwt-rpc, json, or html forms communicate server.
you can attach arbitrary html element using rootpanel.get("id");
add javascript widgets.
almost every javascripty component on employer's website written in gwt: http://www.cohomefinder.com/ . backend old fork of struts.
and here's nice, though bit dated, article building 'normal' websites in gwt: http://www.canoo.com/blog/2007/03/13/building-a-regular-website-with-the-google-web-toolkit/
i'm not sure, however, use of gwt shines. 1 downside lot of javascript parsing on every page load. code splitting can that, some.
Comments
Post a Comment