tell me struts flow ?
Answer Posted / a.v.satyanarayana
Struts follows mvc pattern.
Model ; which is represented as bussiness components.
View: at view level we have JSP's
Controler: Actionservlet given by the frame work.
This frame work mainly depends upon two xml files.
1) is web.xml where we are moniteriong the controlerpart.
2) struts.config.xml where action classes are congured.
when a request is submitted, this request is handelled by
the controller.And the actionservlet internally checks into
the struts config.xml and identifies the coresponding
action class.
Instantiate that action class and execute the bussiness
logic in that action class and forwards the request to the
required JSP.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Why are struts tightly coupled?
What do you mean by tiles in struts?
What do you know about validation plugin ?
What are apache struts?
What is action class? What are the types of action class?
Explain the difference between plain-validator and field-validator in struts?
What is the purpose of form-beans tag in struct-config.xml?
How client side validation is enabled on a jsp form?
What are the advantages of spring mvc over struts mvc?
how does request processor relates to action mapping?
Which model components are supported by Struts?
What does execandwait interceptor?
How are interceptors and servlet filters different?
Where should struts xml be placed?
What is used to display the intermediate result in an interceptor?