• 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
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

Difference between MVC and Struts

 
Ranch Hand
Posts: 50
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I dont know the difference between struts and MVC. I think Struts framework uses MVC. apart from MVC struts also uses taglibs. I want to know the differences in detail. Can anybody please tell me the required and some of the good resources to understand struts framework
 
Ranch Hand
Posts: 188
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
MVC is a design pattern a well-defined way of solving a particular, common problem. Struts is a framework based on the MVC design pattern.
The Model-View-Controller pattern(MVC), in it's pure form, stresses seperation of the things that make up an application, i.e. some sort of persistent data and logic to access and handle it(the Model), presentation logic(the View), and logic to handle basic control of the app(the Controller). In Struts, the Model is usually a database of some sort, the View is typically made up of JSP pages, and the Controller is a Servlet.
This page is a great place to get started with Struts:
Ted Husted's struts page
You can also do a quick google search on Struts and MVC, you will find plenty of resources.
HTH,
E
 
If you send is by car it's a shipment, but if by ship it's cargo. This tiny ad told me:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic