Getting Interceptor Parameters in Struts 2
问题 I have following action mapping <action name="theAction" ...> ... <param name="param1">one</param> <param name="param2">two</param> ... <param name="paramN">nth-number</param> ... </action> I can get parameter map using following line in Interceptor Map<String, Object> params = ActionContext.getContext().getParameters(); Just as above, is there any way to get interceptor parameters as defined in following mapping. <action name="theAction" ...> ... <interceptor-ref name="theInterceptor">