tell me struts flow ?
Answer Posted / venu
When a client makes a request ,The request goes to the
action servlet as we configured in web.xml (for every
request
*.do----->org.apache.struts.action.ActionServlet.).then
action servlet will read struts-config.xml file and it wil
create module config object and then give it(Module config
obkect) to RequestDispatcher(by calling process() method in
request dispatcher .I mean deligating the request to RD by
doing this.Process method is designed as Chain of
responsability design pattern).After deligating the request
to RD by AS ,AS will not do any thing .from here onwards
Request Dispatcher wil take careof every thing like process
the reuest and send the response.RequestDispacher wil check
whether formbean object existed for this form ,if it is
existed it wil reset the form bean by calling reset()
method of form bean.reset() will reset the new values in the
formbean object.I mean in the form bean object is initiating
with the null values when it is created(it creates when
client makes a request itself).then RD wil check whether the
validate attribute is true or not .if it is true then it
does the validation by calling the method validate().This
method wil return
ActionErrors object.After executing the validate method RD
wil check whether the ActionError object is null or not.If
it is not null,then it wil forward the request to Error.jsp
as we configured in struts-config.if it is null, then it wil
cal the its respective action class as we configured in
struct-config.xml and then action class wil cal bussiness
class method .bussiness class method wil cal the DataAccess
layer class method .The response send it to bussiness class
method.bussinesss class method wil send the response to
action class.action class method wil return the response to
RD.then RD send the response to Success.jsp.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What configuration files are used in struts?
How we can install struts?
Which technologies can be used at view layer in struts?
What is lookupdispatchaction?
Explain struts?
How exceptions are handled in struts application?
What are Struts2 core components?
Explain architecture of struts2?
What is difference between spring and struts?
Do I have to credit struts on my own website?
Explain about struts relation to html tags?
What are the aware interfaces in struts2?
What is the purpose of @intrangefieldvalidator annotation?
What’s the difference between validation.xml and validator-rules.xml files in struts validation framework?
What is the purpose of '@customvalidator'?