1.when actionservelet execute.
2.when web.xml executes
Answer Posted / srikanth
at container startup, container reads the web.xml using sax
perser
in web.xml,we are configuring ActionServlet with load on
start up tag ,then ActionServlet will loaded,
<servlet-name>as</servlet-name>
<servlet-
class>org.apache.struts.action.ActionServlet</servlet-class>
<load-on-startup>1</load-on-startup>
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is spring hibernate and struts in java?
What does execandwait interceptor?
What are the core classes of the struts framework?
What is http forward?
What is actionform in struts?
Which components are available using actioncontext map?
Whats the difference between the default namespace and the root namespace?
What is the purpose of dispatcher result type?
What is the default suffix for Struts2 action URI and how can we change it?
How to upload struts file?
Explain the life cycle of a request in struct2 application?
What are the 5 constants of action interface?
What is the difference in using Action interface and ActionSupport class for our action classes, which one you would prefer?
How the exceptions are handled in struts?
What is the forward action utilized for?