I have to build the online ecommerce website using Java. As I want to use AJAX libraries like jQuery/prototupe/moottols, someone told me to go for Request/action based frameworks as I am from web development background.

So i started learing Spring. I have done Spring DI and AOP.

Can someone please guide me that in order to reach my goal of developing ecommerce web site using spring and JQuery (same as in html pages) what thing i nned to learn

Should i go Spring MVC or web flow or they are same. i am confused. Please help me

Also, do I need to have knowledge of servlets and JSP for Spring MVC or web flow? Someone told me not to do servlet/JSP thing as it is old.

or i have to learn that for spring MVC. i can spend 1 week on getting the basics but i am not sure what to do

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

Spring webflow is built ontop of spring MVC. Spring MVC is a standard action-based, MVC framework. Webflow provides extra functionality - conversations. That is useful for wizard-like flows.

link|improve this answer
it means i have to learn first MVC and then webflow or only MVC is enough. Can build ecommerce website in MVC only without flow – John Jan 28 '11 at 10:33
@Name - you can. Webflow is an extra. – Bozho Jan 28 '11 at 10:35
are both linked to each other or i can completely follow Weflow without MVC – John Jan 28 '11 at 10:48
1  
as I said - webflow is ontop of MVC. So I don't think you can use it without it. – Bozho Jan 28 '11 at 10:51
feedback

Your Answer

 
or
required, but never shown