1) When first the request is made from a JSP/HTML/XSLT to the server with a particular URI(/something.do), the controll first reaches Web.xml file.
2) it checks the mapping for /something.do in web.xml and finds the ActionServlet and loads ActionServlet. ...... <servlet-name>action</servlet-name> <servlet-class>org.apache.struts.action.ActionServlet</servlet-class> .....
3) As part of loading ActionServlet calls the init() as every other servlet does. (Note: ActionServlet extends HttpServlet only) ...................... <init-param> <param-name>config</param-name> <param-value>/WEB-INF/struts-config.xml</param-value> </init-param> ........................
4) in init() it takes the init-parameters as struts-config.xml and loads the xml file.
5) then the ActionServlet calls the proceed() of RequestProcessor class.
6) in proceed() , it checks the appropriate mapping for current request, creates and ActionMapping object and maps the URI to the action in the struts-config.xml.
7) then it creates an object to ActionForm associated to that action mapped object
8) calls the setters and reset().
9) if the action tag in struts-config.xml contains validate="true", then the validate method is called.
10) if any validation errors, it return to view component (any jsp,XSLT) which is specified as an attribute of input="/error.jsp"
11) if there are not validation errors, it then creates an Action class for that mapping and search for execute method and executes it.
12) execute method performs the bussinesslogic which you provide and returns with an ActionForward key.
13) now the returned key is searched in the mapping object which is specified as forward tag.
14) it looks for the appropriate view component and performs the getters on that view component and returns the response to the browser.
Struts navigation flow================1) When application server gets started,container loads the web.xml1) When first request is made from a JSP/HTML/XSLT to the server with a particular URI(/somethi...
Struts flow After developing the struts application after deploying it is the server & when you started the server then following things will happened Container initializes the web.xml When co...
1. no need coding action forms2. can be any method3. action name can contain place holders4. interceptors5. value stacks6. thread safecompared to struts 1
Advantages of struts1. Centralized file-based configuration2.
Form beans.3. Bean tags.4. HTML tags5. Form field validation6.
Consistent approach.Disadvantages of struts1. Bigger learning curve2.
BAD documentation3. Less transparent4. Rigid approach.
Ans