what is the purpose of load_on_startup entry in struts-
config.xml?
Answer Posted / jagadish
The load-on-startup element indicates that this
servlet should be loaded (instantiated and have
its init() called) on the startup of the web
application. The optional contents of these
element must be an integer indicating the order in
which the servlet should be loaded. If the value
is a negative integer, or the element is not
present, the container is free to load the servlet
whenever it chooses. If the value is a positive
integer or 0, the container must load and
initialize the servlet as the application is
deployed. The container must guarantee that
servlets marked with lower integers are loaded
before servlets marked with higher integers. The
container may choose the order of loading of
servlets with the same load-on-start-up value.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of @validations annotation?
How to handle exceptions in structs?
Which library is provided by struts for form elements like check boxes, text boxes etc?
What does the term struts mean?
What’s the utilization of resource bundle properties file in struts validation structure?
What is the purpose of @urlvalidator annotation?
What does modeldriven interceptor?
What's mvc pattern ?
In struts, how can we access java beans and their properties?
What is ognl?
How to convert struts to spring mvc?
What do struts do?
How you will enable front-end validation based on the xml in validation.xml?
What are the advantages of spring mvc over struts mvc?
What is the purpose of @stringlengthfieldvalidator annotation?