18
2006
Drinking the Ajax Kool-Aid… Can I just dump my web framework?
I’ve been integrating DWR into our web monitoring app to display recent monitoring events dynamically while the user is doing other stuff. Since I already have a service object that does all the heavy lifting, integrating it was a snap. And now they have a section of the page where they can see events as they happen.
Pretty chuffed with myself, I decided to experiement with making one of our edit forms ajax-ified. Again, the service calls were already there to add/update/delete the object the form was representing, so I just exposed then in dwr.xml… and I have a dynamic table that I can add/edit/delete within one html page.
Ok. Now I’ve now got freight-train momentum, so I added some OpenRico sauce to make things slide and collapse… baby.

Then I got to thinking… This was all pretty easy. I didn’t need to setup a special controller with custom table, edit, and delete views; I didn’t have to configure any bean marshalling; I didn’t have to do a stack of view mapping config; and I could develop and test with a click of “Refresh” on the browser.
Then the penny dropped. You know, I could probably live without most the web framework entirely! Have one html page for each portion of functionality, do the service calls via DWR to do the heavy lifting, and just add some script for interface swishness. It does mean I’m committing the javascript only for the view… but it seems to a lot less work than the MVC framework I’m using now. And then I found that much smarter people than I have already been thinking this some time.
So is this just crazy talk? Doing the view in straight Javascript and just use DWR to call appropriate methods in the Application Service layer to do the add/update/delete/execute/query or whatever the business logic requires?
DWR gives me the security to lock down what methods are exposed. And the business layer itself applies security to make sure users can only delete/edit/update their own data. So can I kiss my MVC framework goodbye? Any brave souls walked this path? Validation could be a deal, ditto for browser compatibility, but if DWR and Rico are solid there then I’m pretty close to a compelling rapid web dev environment.
Leave a comment
Glen Smith
Archives
- April 2012
- March 2012
- January 2012
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- April 2011
- March 2011
- January 2011
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005
- September 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- February 2005
- January 2005
- December 2004
- November 2004
- October 2004
- September 2004
- August 2004
- July 2004
- June 2004
- May 2004
- March 2004
- February 2004
- January 2004
- December 2003
- November 2003
- October 2003
- September 2003

An article by Glen




