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
How is the mvc design pattern used in struts framework?
What is the purpose of action-mappings tag in struct-config.xml?
Whats the difference between the default namespace and the root namespace?
What is xml based validation in struts2?
What is the configuration files used in struts?
How to get data from the velocity page in a action class?
What is the purpose of @emailvalidator annotation?
What is struts xml?
What is the purpose of @element annotation annotation?
What is the purpose of @conversion?
Explain the difference between dispatchaction and lookupdispatchaction in struts?
Where can I get help with struts?
What do you mean by struts.dev mode?
How is the action mapping specified?
Describe validate() and reset() methods.