I'm using struts and spring integrated frameworks in my project. I have an interceptor before every struts action call. I need to access my action name and am doing so with the following piece of code:
actionInvocation.getProxy().getActionName();
and my struts action in struts.xml is :
<action name="uploadDocument" class="commonAction" method="uploadDocument">
<interceptor-ref name="sessionStack"/><interceptor-ref name="cachingStack"/>
<interceptor-ref name="basicStack"/>
<result name="success" type="stream">
<param name="contentType">text/html</param>
<param name="result">inputStream</param>
</result>
</action>
I need to access the parameters under the result tag. Is that possible?