Hi,

We have a scenario where one of the results of a struts action is a jsp page with a forward to another action. This works fine under 2.5.X versions. In 6.0.0 I am seeing a stackoverflowerror. After debugging it seems like the first action processes it correctly and returns the result page and the jsp forward is triggered at this point struts seems to execute the first action again rather than the action specified in the jsp forward.

from web.xml

        <filter-mapping>
            <filter-name>struts2</filter-name>
            <url-pattern>*.action</url-pattern>
            <dispatcher>FORWARD</dispatcher>
            <dispatcher>REQUEST</dispatcher>
        </filter-mapping>

Thanks,
Prasanth

Reply via email to