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 tag libraries are defined in Struts?
What are different Struts2 tags? How can we use them?
How duplicate form submission can be controlled in struts?
What are result types in struts?
What's the purpose of execute method of action class?
how to connect from struts to database through hibernet and where u can modify the class
What is the significance of logic tags in Struts?
Explain the life cycle of a request in struct2 application?
How to handle exceptions in structs?
Give an example where struts tiles may be used?
How does one create an action in struts 2?
What is the purpose of @requiredstringvalidator annotation?
What is difference between lookupdispatchaction and dispatchaction?
Which components are available using actioncontext map?
What are Struts2 core components?