When an <http://struts.apache.org/2.0.11.1/docs/action.html>action class method completes, it returns a String. The value of the String is used to select a result element. (<result name = "input" >here )

Not very sure on this but I think the flow will go to render action first and then if it finds the forward name there as "input", it will show product_main.jsp

On 5/27/2010 9:52 AM, ennidhi wrote:


There is a action tag like this in my application. What happens here?
whether the request goes to the render action or the page product_main.jsp
is displayed? How to find this? Thanks

                <action name="viewedit_ajax"
com.tebs.augusta.web.actions.product.ProductAction_viewedit">
                        <result type="chain">render</result>
                        <result name="input">product_main.jsp</result>
                </action>

Reply via email to