I can't see any other web application framework more mature than the GWT from google and ZK from potix corporation. Both ajax frameworks is implemented in Java. Each has different implementation approach. ZK uses server-centric approach while GWT uses client-centric(hosted mode is somewhat server centric as well). Both has advantages over the other. These list is the prominent I found so far.
Advantages of GWT over ZK
- GWT is compiled in javascript, so Converting your web application to have offline support is pretty slick and seamless. Unlike ZK which most of the codes is run in the server.
- More info:
- Offline support for web application is a very usable feature so users won't have to connect to a network all the time to continue the use of their applications. Offline is the new hype in HTML 5.0 specification which for now is implemented using google gears plugin. Google gears plugin is available to most web browsers and it is installed by default with the newly available high performance google chrome browser.
- It is easy to create custom components for your app in GWT from scratch which you could base your components from already defined GWT components, or you could extend those components with ease.
- GWT provides an unrelenting flexibility with your components in a consistent manner (using same java codes) unlike zk you have to code custom flexibilty in javascript.
- GWT does not require to use Java as the server side code to implement business logic in the server. In fact you could use any server platforms such as PHP, python, .net, etc. aside from Java.
Advantages of ZK over GWT
- Coding business logic in ZK is pretty slick, simple and higher security imposition, where as in GWT it is a little bit tricky to link your client side logic and server side logic.
- Scaling your application depends on your server you deployed your application. So whenever you need your users to have a better application performance, You just have to upgrade server resources.
- ZK provides a lot of ready to use widgets and components.