Friday June 09, 2006 GWT - revolution in web application development
Few my friends were talking about Google Web Toolkit GWT last week. There are too many MVC frameworks for web application development in java world - JSF, Struts, Spring, Tapestry, JSF, etc. It is not normal that one other tool can so quickly impressed java developers. I had to look at GWT too. GWT answers to question which I've heard many times:
Why not to develop the web application in the same way like desktop application?
By using GWT you can develop web application in the same way like swing application. The similar parts are below:GWT solves communication between client and server side. It use proprietary Remote Procedure Calls. A service is represented by interface. Server side implements the interface and JavaScript is generated for client side. It leads developers to separate model, view and controller. GWT RPC is kind of SOA. Only with one difference. It doesn't use redundant (and slow ) SOAP protocol. Developer doesn't need to write jsp pages and servlets anymore.
There is no support for GWT application development in NetBeans. I hope GWT NetBeans project type be implemented early. And I may be someone will answer to another question:
Why not to generate GWT java code with NetBeans Matisse editor?
Posted by xzajo ( Jun 09 2006, 01:22:13 PM CEST ) Permalink Comments [175]