Building a Graphical User Interface in Java

local application

Swing vs. SWT

I've used Swing a bit, and haven't gotten around to trying SWT. Can someone give me a synopsis of the differences?

web application

Oliver Steele takes a look at Web MVC vs Rich Internet Application architectures. And a nice, clear exposition it is.

Wafer

Wafer is "a research project which compares the many open source web application frameworks which are available using a common example application." Looks interesting.

Struts Action Framework

Apache Struts Action Framework makes you work awfully hard to do something simple, but it's getting better. I don't like the way that additions and changes require touching so many files. And there's much information online that's out-of-date and misleading to those trying to learn Struts. Perhaps on a large project, with separate teams for various tasks (not the way I would separate into teams, given my druthers), the complexity of Struts is justified by its power.

In a Nutshell

The normal pattern is to have a prerender action before each page to put information into request scope that the .JSP will display. You can also use a tile controller for this, but by the time you reach the controller, you're committed as to which page you're going to display. If you use an Action, you have the opportunity to forward to a different page based on current conditions.

The .JSP frequently has one or more HTML forms, which are backed by an ActionForm (a.k.a. Form Bean) which collects the data from the Request. An advantage of using an ActionForm over just retrieving the data from the Request in your Action, is that you can declaritively add validation to the form input. Michael Jouravlev makes a convincing argument that you should not set this validation to be automatic, but call it explicitly in your Action.

The Action receiving the form submission should

  1. Validate the input.
  2. Marshall the input submission into Domain Objects
  3. Call the Business Layer
  4. Catch any exceptions from the Business Layer and turn them into appropriate error page forwards or other feedback to the user.
  5. Forward to a display page (e.g. prerender action) that will unmarshall the results for display.

The use of POST requests to cause a change and GET requests for display (even after a POST request) eliminates the infamous "back button problem."

Struts Resources

Wicket

Wicket is "a Java web application framework that takes simplicity, separation of concerns and ease of development to a whole new level."

SiteMesh

SiteMesh is an alternative to Jakarta Tiles.