What is Struts Frame Work Architecture(With Diagram) ?

Answer Posted / farookh

Model Components
Model components provide a "model" of the business logic or
data behind a Struts program. For example, in a Struts
application that manages customer information, it may be
appropriate to have a "Customer" Model component that
provides program access to information about customers.

It's very common for Model components to provide interfaces
to databases or back-end systems. For example, if a Struts
application needs to access employee information that is
kept in an enterprise HR information system, it might be
appropriate to design an "Employee" Model component that
acts as an interface between the Struts application and the
HR information system.

Model components are generally standard Java classes. There
is no specifically required format for a Model component,
so it may be possible to reuse Java code written for other
projects.

View Components
View components are those pieces of an application that
present information to users and accept input. In Struts
applications, these correspond to Web pages.

View components are used to display the information
provided by Model components. For example, the "Customer"
Model component discussed above would need a View component
to display its information. Usually, there will one or more
View components for each Web page in a Struts application.

View components are generally built using JavaServer Page
(JSP) files. Struts provides a large number of "JSP Custom
Tags" (sometimes referred to as Struts Tags) which extend
the normal capabilities of JSP and simplify the development
of View components.

Controller Components
Controller components coordinate activities in the
application. This may mean taking data from the user and
updating a database through a Model component, or it may
mean detecting an error condition with a back-end system
and directing the user through special error processing.
Controller components accept data from the users, decide
which Model components need to be updated, and then decide
which View component needs to be called to display the
results.

One of the major contributions of Controller components is
that they allow the developer to remove much of the error
handling logic from the JSP pages in their application.
(After all, if errors in processing occur, the Controller
component forwards to an error-processing View component,
not the primary results View component.) This can
significantly simplify the logic in the pages and make them
easier to develop and maintain.

Controller components in Struts are Java classes and must
be built using specific rules. They are usually referred to
as "Action classes."

I unable to draw here........hope this will help you

Is This Answer Correct ?    17 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Are interceptors and filters different?

538


What is the use of token interceptor in Struts2?

613


What types of validations are available in xml based validation in struts2?

541


What is apache struts used for?

488


What’s the utilization of resource bundle properties file in struts validation structure?

618






Is there a particularly good ide to use with struts?

496


What is the purpose of plug-in tag in struct-config.xml?

482


What is execute method in struts?

491


Can we have multiple struts config files ?

534


State an example of struts configuration file as an action parameter for action servlet.

532


What is the purpose of @emailvalidator?

553


How can link tag’s action attribute be used?

518


What is the purpose of @key annotation annotation?

588


What is the role of a handler in mvc based applications?

741


What is the purpose of @keyproperty annotation annotation?

571