• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Spring MVC or webflow

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I want to develop a web application which uses Spring in the service layer.I have gone through the tutorials and got confused whether to use spring mvc or web flow. My application has got 4 or 5 different pages, the pages has no interaction which each other,but within each page there are so many ajax requests, or in other words a major part of my application works through ajax requests within the pages.
Can anyone please tell me whether I should use mvc or webflow? Also what can be a better choice for the view?jsp or jsf(richfaces)? I am more concerned about the performance of the application when multiple users login.

thanks,
deeps.
 
Ranch Hand
Posts: 140
Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Since the pages has no interaction with each other you can just use spring MVC, and for the views can just use JSPs

No need for more complexity
 
deeps pravi
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,

Thanks for the reply.But since I want to use ajax requests extensively, do you think webflow has some advantage over mvc?

Thanks,
Deeps
 
Ranch Hand
Posts: 78
Eclipse IDE Tomcat Server Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If your project mainly concern with ajax request then i would suggest you to use jsp. They will be easy to handle.
 
reply
    Bookmark Topic Watch Topic
  • New Topic