How Struts will follow the MVC?
Answers were Sorted based on User's Feedback
Answer / guest
The basic purpose of the MVC architecture is to separate the
business logic and application data from the presentation
data to the user. So in struts there are various components
for these three flavours. For Model struts has not provided
any component as a part of framework so user can have
liberty to use code of his own. For view components JSPs are
used mainly.And for controller there are Action servlet and
the structs configuration files which together acts as a
controller.
Is This Answer Correct ? | 16 Yes | 2 No |
Answer / somesh
The Model-View-Controller (MVC) framework is a proven and
convenient way to generate organized, modular applications
that cleanly separate logic, style, and data. In the Java
world, Struts is one of the best-known and most talked
about open source embodiments of MVC. Struts contributors
have recently enhanced the project's core functionality and
improved the view support, incorporating the Tiles view
component framework to strengthen support for component-
based development, to increase reuse, and to enhance
consistency.
Is This Answer Correct ? | 6 Yes | 6 No |
Answer / krishnareddy
hi all,
->designpattern means it is the solution for the
reoccuring problem.
->The main aim of the MVC architecture is to separate
the business logic and application data from the
presentation data to the user.
->in model we can write our own code(like beans).
simply we can say that model is responsible for
managing the data.
->in view component we can write jsp code.
->controler is responsible for controling the application.
as part of controler we can write the servlet code.
use of mvc:-
1)suppose we write the code as part of controler to connect
to oracle database.
now i want to connect to another database like sybase.in
that particular swictuation i dont need to change model and
view components.what ever the code up to that controler
part only has been changed.
so that performance of the application automatically
increased.
there is the clean separation between the business logic
and presentation logic.
2) By using the MVC design pattern our
application becomes more expressive
Is This Answer Correct ? | 2 Yes | 6 No |
Answer / tanugula pradeep kumar
hi to all .here is another answer.i hope it may be used to
to atleast anyone .
Struts provides you the basic infrastructure infrastructure
for implementing MVC allowing the developers to concentrate
on the business logic.
MVC Architecture
The main aim of the MVC architecture is to separate the
business logic and application data from the presentation
data to the user.
Here are the reasons why we should use the MVC design
pattern.
They are resuable : When the problems recurs, there is no
need to invent a new solution, we just have to follow the
pattern and adapt it as necessary.
They are expressive: By using the MVC design pattern our
application becomes more expressive.
Is This Answer Correct ? | 2 Yes | 8 No |
why we are not implement business logic in struts action?
what is diffrence between Dynaactionform,actionform and Dynavalidateform
How we can configured action mapping in struts?
i have list of values(e.g 100). using logic:iterate, how can i print the multiples of 5th element? how the logic:iterate will understand the multiples of 5.
What is role of actionservlet?
What is the difference between struts and spring?
What does the term struts mean?
What do you know about validation plugin ?
Hi i am murali.i need a excellent answer for the question Tell me about project and project flow ? i mean it is use full to any project,it is on STRUTS
Which interceptor is responsible for i18n support?
What configuration changes are required to use Tiles in Struts?
How to create validations?what are struts validation components?