• 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 Web Module vs Spring MVC Framework

 
Ranch Hand
Posts: 94
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what's the different between those two?

it says that MVC frameworks, like Struts, can be integrated on either Spring Web Module vs Spring MVC Framework.

it seems like redundant for me..
please explain..

Thanks.
 
Ranch Hand
Posts: 8945
Firefox Browser Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There was a discussion in this thread.
https://coderanch.com/t/59836/oa/Advantages-Spring-Over-Struts-Other
Hope it helps
 
Rudy Harianto
Ranch Hand
Posts: 94
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry, but that's not the point.

what i'm asking is about Spring Web Module vs Spring MVC Framework instead of Struts vs Spring.

it's based on Spring in action chapter 1 at page 10-11, figure 1.1.

thanks.
 
Pradeep bhatt
Ranch Hand
Posts: 8945
Firefox Browser Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Rudy Harianto:
Sorry, but that's not the point.

what i'm asking is about Spring Web Module vs Spring MVC Framework instead of Struts vs Spring.

it's based on Spring in action chapter 1 at page 10-11, figure 1.1.

thanks.



You missed a link to struts web module vs spring MVC link in that thread. Here is the link
https://coderanch.com/t/59724/oa/Struts-Spring
 
Ranch Hand
Posts: 119
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is the 'Spring Web Module'?
 
Pradeep bhatt
Ranch Hand
Posts: 8945
Firefox Browser Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by louise rochford:
What is the 'Spring Web Module'?


See here
http://www.springframework.org/docs/reference/mvc.html
 
author
Posts: 422
13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Rudy Harianto:
Sorry, but that's not the point.

what i'm asking is about Spring Web Module vs Spring MVC Framework instead of Struts vs Spring.

it's based on Spring in action chapter 1 at page 10-11, figure 1.1.

thanks.



The Spring web module provides some basic utility classes for web applications and also provides integration points with Struts and JSF. But, by itself, the web module doesn't provide an MVC implementation.

The Spring MVC module is a subframework built upon Spring and the Spring Web Module providing a complete alternative to other MVC implementations.

So, if you're using Struts in your presentation layer and Spring in the service layer, you'll be using the Spring Web Module, but not the Spring MVC module. But if you're using Spring MVC in your presentation layer, you're using both modules.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic