The only one of those I've used is JSF, so I won't be able to give you feedback on the others, but here's my take on JSF. In my experience, the minute we converted from JSF in JSP to JSF in facelets, life got MUCH easier, so I'll focus around facelets. Also, It looks like Seam and JSF are not mutually exclusive.
Pros:
- Creating facelets xhtml components is simple, which promotes re-use.
- Decent templating abilities using built in tags like ui:insert, ui:include, and ui:decorate
- Simple access to Spring beans through faces-config
- XHTML based so web developers unfamiliar with java can still be effective
- Good widget library available in tomahawk/trinidad
Cons:
- Post requests only. This can make bookmarking difficult.
- Not as built-in ajax-y as GWT, but this may be fixed if used with Seam
I'm by no means an expert in JSF/Facelets, so I'm sure there are others I've missed. Hopefully someone else will also elaborate.
Update for JSF 2.0:
- Has even better re-use capabilities with composite components
- Widget libraries for 2.0 include primefaces and mojarra scales
- Allows get requests and bookmarking
- Has built in Ajax support
- See http://andyschwartz.wordpress.com/2009/07/31/whats-new-in-jsf-2/ for more on JSF 2