Spring Web Flow Vs Spring framework
Which is the best?
I have also another question on Spring Web Flow Vs Seam.
Is Spring Web Flow sufficiently stable for big project?
That question is not quite accurate.
Spring Web Flow can be used to complement Spring MVC (but does not depend on it). It is not about having one or the other.
I suggest having a look at the reference manual section about Spring MVC and the documentation of Spring Web Flow to find out more.
Regards,
Andreas
Strangely documentation on SWF for me is more tricky than the Spring MVC.
I mainly interested in the development of web application but these two products address the problem in a different way.
When do you talk about integration, rather than use one or the other, refers to the fact that SWF, at least at the moment, is not thought to be able to manage everything?
Bye
I recommend you download the SWF 2.0.0. RC1 distribution and evaluate the booking-mvc reference application. The fit between Spring MVC @Controllers and Web Flows is shown right there in that sample, which is designed to illustrate best practices.
Andreas is right: SWF is a *extension* to Spring MVC for implementing stateful web flows. SWF is never going to be a quot;one size fits all solutionquot;. The reference application I mention shows a Spring MVC app that uses SWF for stateful user interactions, such as booking a trip on-line. This usage scenario is typical of most real world Spring web applications.
I also recommend you start your documentation review with the Web Flow 2 reference guide after evaluating the reference application.
Cheers
Keith
Ok I will tried as soon as possible.
Thanks. |