Building a Graphical User Interface in Java
Contents
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
- Validate the input.
- Marshall the input submission into Domain Objects
- Call the Business Layer
- Catch any exceptions from the Business Layer and turn them into appropriate error page forwards or other feedback to the user.
- 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
Struts Survival Guide -- Basics to Best Practices (covers Struts 1.1) by Srikanth Shenoy PDF and resource links from the same site.
Struts Widgets wiki page showing how to accomplish a number of common GUI widgets using Struts.
eXtremeComponents is a tag libary distributed under an Apache license. The eXtremeTable takes a Collection of Beans or a Collection of Maps out of a given servlet scope and renders the content on the JSP.
DialogAction handles the related GET and POST in a single Action.
- Dispatching actions
FormDef allows you to easily declare Struts form beans based on existing business classes. (code)
Struts-Layout Suggest tag allows to render a text field with a suggestions list.
JavaWebParts provides AJAX support
about TLDs and URIs
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.