A web application that is collection of JSPs. Generally this approach is followed to get started with
developing web application.
The page-centric approach has lot of draw backs such as the code becomes a mixture of presentation,
business and data access logic. The maintenance and up-gradation of the application becomes a
nightmarScaling of such kind of application is also difficult and lots of code is also get duplicated.
Page-with-Bean Approach (MVC Model)
This approach is different from page-centric approach in a way that all the business logic goes into
JavaBeans. Therefore, the web application is a collection of JSPs and JavaBeans. But still this approach
is insufficient to separate different kind of logics
0 Comments
Please add nice comments or answer ....