Answered Questions

  • What is the difference betwwen struts 1.1 and struts 1.2?

    Venu

    • Feb 16th, 2007

    REquest diapatcher servlet which filters the action servlet actions is added in 1.2

  • What is struts flow? Explain in detail

  • Explain Struts navigation flow

    Star Read Best Answer

    Editorial / Best Answer

    ravi_1229  

    • Member Since Nov-2006 | May 9th, 2009


    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>
    .....

        <servlet-mapping>
            <servlet-name>action</servlet-name>
            <url-pattern>*.do</url-pattern>
        </servlet-mapping>

    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.

    Simple, Thats it.

    Thanks
    Ravi

  • What is the difference between Struts 1.0 and Struts 1.1

    raj.ntrj

    • Nov 11th, 2008

    The new features added to Struts 1.1 are 1. RequestProcessor class 2. Method perform() replaced by execute() in Struts base Action Class3. Changes to web.xml and struts-config.xml4.Declarative excepti...