***************************************************
<package name="me" extends="struts-default">
  <interceptors>
       <interceptor name="mysimple" class="mysimple">
          <param name="name"> try </param>
        </interceptor>
 </interceptors>
 
 <action name="try" class="try">
     <result name="success=">/success.jsp</result>
     <interceptor-ref name="mysimple">
            <param name="name"> try 2</param>
        </interceptor>
</action>
 
****************************************************
the above code triggers interceptor before class try's execute(), and the 
purpose of interceptor,
But, how to trigger interceptor again after class try's execute() ? i check the 
stuts 2 document, 
it just saying interceptor can trigger before and after execute, but never give 
the example for how to do it after execute(), 
 
anyone can help?
 
tks in advance
 
john


      

Reply via email to