How Struts will follow the MVC?

Answers were Sorted based on User's Feedback



How Struts will follow the MVC?..

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

How Struts will follow the MVC?..

Answer / rout

clear separation betwwen the layers..

Is This Answer Correct ?    1 Yes 0 No

How Struts will follow the MVC?..

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

How Struts will follow the MVC?..

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

How Struts will follow the MVC?..

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

How Struts will follow the MVC?..

Answer / uio

232

Is This Answer Correct ?    3 Yes 12 No

Post New Answer

More Struts Interview Questions

How is declarative handling of exceptions done in struts ?

0 Answers  


In ActionClass we can use only one action i.e execute(), but in DispatchAction we can use multiple actions.My question is , we can use multiple actions in Action class if(action.equals("add") if(action.equals("update"). Then when to use Action and DispatchAction which is frequently in webapplications.

2 Answers  


where you will implement the tiles in struts?

2 Answers   Wipro,


who will run the execute method in struts?

15 Answers   TCS, Wipro,


What is struts framework in java?

0 Answers  






Explain about tiles?

0 Answers  


struts 1.3 features?

1 Answers   Integra, Zensar,


Explain about struts?

0 Answers  


How many struts config file can be created in struts?

0 Answers  


How is a lookup dispatch action created?

0 Answers  


Explain about how requests from the client are sent?

0 Answers  


What is strut web xml?

0 Answers  


Categories