show/hide this revision's text 2 Added update.

One of the big things to think about is what changes you expect. if it's a web-based application, you'll generally do well with a choice that is built around JSP because it is easy to change, and can be changed by designers.

update

"How is it easy to change?" I'm asked. Basically, there are two things about JSP that make it easier to change: it's a rich platform, in the sense that you can write relatively little JSP compared to, say writing your own servlets and writing the servlets to generate styled, consistent HTML; and second, since most of the JSP looks more like templated HTML than Java code, you can let designers loose on it directly. That means all the fussy design decisions can be made by designers, instead of needing to have a designer do it, show it to the coder, have the coder re-code it, then show the results back to the designer.

show/hide this revision's text 1

One of the big things to think about is what changes you expect. if it's a web-based application, you'll generally do well with a choice that is built around JSP because it is easy to change, and can be changed by designers.