-
Get a monthly update on best practices for delivering successful software.
GWT 1.4 RC has been released. What's new? Just a sample:
I'm especially excited by the new deployment options:
- GWT RPC is no longer tied to exclusively to servlets. New modularized RPC server code makes it easy to connect GWT RPC to your choice of Java back-ends.
- Adding GWT modules to an HTML page has been simplified: just add a <script> tag. You no longer need to use <meta name="'gwt:module'"> and <script src="gwt.js">. Just reference your module and go.
- Cross-site script inclusion is now supported. The compiler produces a "-xs" (meaning "cross-site") version of your module's startup script that can be included without being restricted by the same-origin policy. Be careful, though. Including scripts from other sites that you don't fully trust is a big security risk.
All of those issues I've had with GWT just got solved. No more trying to plunk around trying to figure out why your module isn't loading in a different page on your site. or why it won't load on a third-party site. Also, integrating GWT with existing backend services was a bit of a hack; now replacing an existing interface with GWT becomes more feasible.
Here's hoping that all of the IDE folks, JetBrains, etc., update their GWT plugins soon to take advantage of the new features.
Related posts:
Topics: Announcement, GWT
Yep, you’re definitely right. It’s not bearable that e.g. an existing service, running in a spring-app suddenly has to extend a Servlet-class just to add a bit RPC stuff to it. I’m really looking forward to hacking with GWT 1.4 – although I usually prefer stable, released versions
Comment by Michael, Tuesday, July 31, 2007 @ 10:15 am
Thanks for the link to my Image Concatenation article….although…I don’t work at Zimbra
The article was inspired by a talk given by one of the Zimbra guys at the Ajax Experience, though.
Comment by Matt, Tuesday, August 21, 2007 @ 8:35 pm