I saw some JSF projects developed by my collegues and these projects seemed to me very slow. Does anybody have the same opinion?
I'm currently using jsp+jstl and jQuery for "rich" client.
I wonder what advantages and disadvantages have modern frameworks (jsf, wicket, tapestry..) over old plain jsp.
It would be great if people who used all these technologies had answered.
It's also interesting for me which most exciting features made you to leave jsp and use "massive" framework (I mean, for example AOP in Spring or something else whatever you can notice).
Thanks for all comments.
Many advantages. I can enumerate JSF advantages which are those I've used in my last project.
JSP doesn't make a clear separation between business logic and layout.
Anyway, although all this advantages and if you are a Java programmer I would advice to take alook at Grails which is pretty much more comfortable.
I totally like to use JSP 2.0 as templating technology -- that is I use Spring MVC to access my domain objects and prepare all data I need for a certain view and leave it to JSP to render it. JSP 2.0 because I like to use tag files for template composition which allows me to use simple JSP 2.0 where I would need other compositing frameworks else.
I intentionally avoid everything in JSP that basically is programming. No data acess, no SQL, no scriptlets, no methods, no nothing. just plain presentation of pre-existing, controller-provided data with maybe some simple cases and iteration of collections.
Benefits of Spring MVC:
JSP is extremely primitive, you basically have no widgets and have to build everything yourself. JSF while an improvement is not the best web framework for java - there are plenty of others that enable you to achieve a much more impressive result - eg GWT.
I've used CGI, PHP, JSP, Struts, Spring MVC (1.2), Bea workshop, JSF, JBoss Seam, Spring MVC (2.5) and Wicket (in that order). I've noticed a jump in both productivity and quality for each new technology I've worked on. It just works better, It feels better. I prefer Wicket (with a twist of spring, quartz, etc.) over all of the others. I can honestly say I saw the light, and I don't want to go back to a darker -- or lighter ;) -- side.
There is a lot to say about Wicket.
There is a lot to improve for JSP and JSF.