Search |
||
Announcing Pivot 1.1Posted by gkbrown on April 20, 2009 at 4:50 AM PDT
The Pivot development team is happy to announce the release of Apache Pivot version 1.1! Pivot is an open-source platform for building rich internet applications in Java. It combines the enhanced productivity and usability features of a modern RIA toolkit with the robustness of the industry-standard Java platform.
This is the first official release since Pivot 1.0 was announced last fall, and is also the first release since Pivot joined the Apache Software Foundation as an incubator project this past February. Major enhancements in Pivot 1.1 include:
More information is available on the Pivot home page, http://incubator.apache.org/pivot. Hope to see you there! -The Pivot Development Team »
Related Topics >>
J2SE Comments
Comments are listed in date ascending order (oldest first)
Submitted by varan on Mon, 2009-04-20 07:36.
For the browser, it seems to be similar to ZK except that it runs as an Applet, whereas a ZK application can be developed as a bunch of XML files (.zul) with Java code on the server side, as pure Java code using a Richlet, or a combination ot both, without the need for using an applet. Is there any other major difference between your framework and ZK, which apparently is much farther along and has a wide following?
Submitted by gkbrown on Mon, 2009-04-20 07:58.
You hit the nail on the head: "it seems to be similar to ZK except that it runs as an Applet". Pivot (like Swing and JavaFX) runs in a JVM, with all the benefits that entails.
Submitted by varan on Mon, 2009-04-20 11:53.
I have developed a fairly complex, currently live, application using ZK, and so I do not see the downside of it not being an applet. Could you elaborate?
Submitted by tvolkert on Tue, 2009-04-21 10:37.
ZK seems similar in philosophy to GWT - write in Java, but deploy to JavaScript. The quick answer as to why this is limiting is that you're deploying to JavaScript ;-) This means that you will have scalability issues (I've yet to see a JavaScript deployment of a 100,000 row table that works nicely) and be held back by the lack of a true 2D API (see http://cwiki.apache.org/PIVOT/decorator-demo.html). You also don't really have the full power of Java at your desposal -- what if you want to write a client that uses the Jabber API to communicate in a way not supported by the old XHR (see http://cwiki.apache.org/PIVOT/google-contacts-demo.html).
|
||
|
|