how to handle http request in struts
Answers were Sorted based on User's Feedback
Answer / satish
in struts applications all the requests will be handled by
the ActionServlet for that struts-config.xml is passed as a
init-param in web.xml
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / 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 |
What is a singleton puppy?
Urgent requirement of JAVA/.NET/QA in a CMMI level3 MNC for Pune location.
What is the life-cycle of an object?
What state is a thread in when it is executing?
Where is stringbuffer stored?
class{ ... ... interface myinterface{ ... ... } abstract class{ .. .. } ... .. .. } is this possible to write "Interface and/ or Abstract class inside a class ? if possible whcich one is possible is only interface? is only abstract?
How do you achieve polymorphism in java?
How would you convert bytes to string?
What are the data types supported by java?
Features of JAVA ? In which version of java synchronizedXXX() methods are included in Collections class.
I have a Person object with 5 variables and I want to store them in a file called Person.txt. What should I do?
What is singleton class and how can we make a class singleton?