Answer Posted / shahnawaz sheikh
"org.apache.action.ActionServlet" is responsible for
handling all HTTP Requests. ActionServlet is responsible
for configuring your application using struts configuration
file.
After that it calls RequestProcessor which is
responsible for processing content type,mapping,forward and
many other methods.Its duty is to process request i.e fetch
appropiate action from Struts configuration file as per the
request and assigning bean to appropiate ActinForm.
One can customize the way request are handled in
Struts by customizing RequestProcessor Class.
And finally our code begins ..... and controller and model
come into play to give resulting view.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Where is jre installed?
What does %d do in java?
What is the meaning of immutable regarding string?
Can we write any code after throw statement?
What is use of super keyword?
Can we use return in constructor?
What are static initalizers in java ?
When should you make a function static?
What are filterstreams?
What is the difference between a vector & an array list?
What are green threads in java?
How to sort a collection of custom Objects in Java?
How hashmap increases its size in java?
Explain the difference between serializable and externalizable in java?
How do you initialize an arraylist in java?