I'm looking to create a new app from scratch and will probably use Spring MVC and possibly Spring Web Flow. The projects created by Spring Roo use Spring MVC and optionally Web Flow. What are some good alternatives for view technology, or is JSP with spring and jstl taglibs and jquery the way to go?
|
|
Technically, the only alternative to JSP is Facelets. As far now JSF is the only MVC framework which can run on top of Facelets. And with much success actually. Facelets fills the shortcomings of JSP to a high degree. The templating capabilities and the possibility of using composite components are great. For Spring MVC there are technically no other alternatives than JSP. You can put some extra abstraction layer in between in flavor of a templating framework like Velocity or Freemarker, but it's after all still "on top of JSP". Facelets is entirely distinct here. |
|||||||||||||
|
|
Springs documentation also suggests Freemarker. Freemarker is (as far as i can tell) fast and has some integration of spring features like binding. |
|||
|
|
|
I recently discovered Thymeleaf. It looks to be a complete replacement for JSPs and has integration with Spring MVC. The template approach looks more like HTML and may be more palatable to your UI designers. They have a small write-up that compares the two solutions side-by-side. |
|||
|
|
You can have as many view technologies as you want on Spring MVC. I have freemarker and JSP view resolvers. When I run into a view that it's too complicated in Freemarker (or just more convinient in JSP) I create a JSP view. For instance, Spring JSLT makes a great job handling forms. For that I use JSP views, but for pretty much everything else I have freemarker views. Have a look to the Spring MVC documentation to see how to configure several view resolvers, basically:
|
|||
|
|
|
I recently started going with plain HTML and jQuery for presentation with Spring MVC only creating a JSON view. So far it's going quite well and even though I have to do the javascript work, it makes for much easier interaction with my designer and quicker turnaround times when he has changes because I don't have to convert his HTML into my JSP. The jury is still out on overall site maintainability. |
|||||
|
|
Spring MVC provides integration with many different view technologies. I would recommend using FreeMarker or Velocity. |
|||
|
|
|
Velocity is the best alternative as far as view templates that you can use with Spring MVC. If you're open to component-oriented web frameworks you could try Wicket or Tapestry, and ditch Spring MVC. If I was going to use JSF and Facelets I would be apt to use Seam and would try using EJB instead of Spring. |
|||||
|
|
I use Stripes and Spring together. Stripes stays out of your way most of the time, but augments Spring nicely when you need it I find. |
|||
|
|
|
I am using velocity and Spring MVC. Also, i am hosting my application on Googles App engine and I have no issues. |
|||
|
|
|
While this is an old question I thought I would offer an up-and-coming alternative which is Scalate. Scalate is powerhouse in templating options. The only probablem is that Scalate requires lots of dependencies (while it requires Scala it does not require you write in Scala). My current favorite though is Handlebars.java which does have Spring integration. |
|||||||
|
|
My suggestions is not to look at view framework as described in most of the above which was not written on top of spring MVC since you will end up in issues like postbacks which means you won't be able to submit the data from this view technology and get back the response from sever. example like validation , edit data submission which refreshes back with data from server WILL NOT WORK . This is because java beans in some above of view technology don't use Spring container lifecycle. You will only be able to use them for pure view example stateless request. example with JSF you won't be able to use postbacks since jsf postbacks only work if you use jsf life cycle and if you use spring framework JSF view resolver with spring mvc you won't be able to do postback so you need to replace jsf servlet controller instead of spring mvc controller . Again since your full project requirement is not clear and if you want no postback requirement you can use some of above choices . one example view technology which is written on top og spring mvc is zk framework based zk mvc in which you can extend your spring mvc controllers from ZK GenericForwardComposer to handle events. You can always use Spring to handle the lifecycle of these controllers using Spring framework. you can google to find similiar other products . This review is based on high level design of framework life cycle. All the best !!! |
|||
|
|
