life cycle of struts?
Answer Posted / vikram naidu
When any struts based web application loaded into server
initially it will load the ActionServlet class, due to
<load-on-startup> tag in web.xml. After instantiation it
will read struts-config.xml file, due to <init-param> tag in
web.xml. When anybody makes request to the respective web
application it will display the file which is mentioned in
<welcome-file-list> tag of web.xml file. When the view
page(.jsp) is displayed to the user internally the struts
framework (ActionServlet) will create an object for the form
bean class (which extends the ActionForm by calling zero
argument constructor(default construtor)) which is mapped
with the Action class path mentioned in .jsp file <html:form
action="/path"> b'coz ActionServlet already read the
information mentioned in struts-config.xml file. later it
will call the reset() and all the getter methods of the form
bean class. when the user fills the form and submit the
input, our form bean class again calls the default
constructor, reset(), all setter() methods, validate()
methods respectively. Validate method return ActionErrors
object. If the ActionErrors object contains any error
values(ActionError/ActionMessage values) then the
ActionServlet calls the input page mapped with respective
action class(<action input="/input.jps") that page will
display to the user with error messages. If ActionErrors
object is null(doesn't contains any ActionError/
ActionMessage) then the ActionServlet calls the execute()
method of the Action class which is bind with input request
(<action path="/path" type="package.OurActionClass"). the
execute() method will return ActionForward object. Depend on
the value, again the ActionServlet will call the respective
view(.jps page) as response and send it back to user. For
processing all the above steps ActionServlet will take the
help with RequestProcessor class. In this way one request
will be processed by the struts framework. And ActionServlet
will act as a front controllet for the application.
| Is This Answer Correct ? | 27 Yes | 5 No |
Post New Answer View All Answers
Explain about the
Does Struts2 action and interceptors are thread safe?
What helpers in the form of jsp pages are provided in struts framework?
What are inner class and anonymous class?
Which interceptor is responsible for i18n support?
How many Action classes have been used in your project? Differences between struts 1.1 and 1.3?
What is struts2 namespace?
What is the different actions available in struts?
What is role of action class?
What is defeult result type?
What does apache struts do?
What is role of actionservlet?
Can I have html form property without associated getter and setter formbean methods?
How is token generated?
What is http redirect?