• 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

MVC and Page View with Bean

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How does the MVC model differ from Page View With Bean of JSP??
 
Ranch Hand
Posts: 321
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Manoranjan,
can you be more elaborate what you are asking about. Well, we have two types of implementation one is page centric where request is sent to a jsp and servelt centric where request is sent to servlet first. MVC is the framework we use to accomplish our implementation needs.
 
Manoranjan Mishra
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ram Thanks.
The two architectures Page-Centric and Despacher(N - Tier) are there for JSP.Under the page cetric approach we have page-view and page-view with bean architectures. I am confused regrading the page-view with bean architecture and the MVC model we normally use in implementation.. Is it so that they are just two approaches to separate the business logic from the data presentation???
 
Ram Dhan Yadav K
Ranch Hand
Posts: 321
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey Mano,
You are thinking in the right direction man!
 
Ranch Hand
Posts: 150
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
MVC is fairly broad concept. We can regard jsp -view, servlet - control, and ejb - model for a architecture of using jsp for presentation, servlet for transfer control, and EJB for business logic and data representation. This case MVC is for a large span architecture/tiers.
Ruilin
[ February 07, 2002: Message edited by: Rulin Yang ]
 
Manoranjan Mishra
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Rulin!!!
 
reply
    Bookmark Topic Watch Topic
  • New Topic