Apache Struts 2 Documentation > Home > Guides > Core Developers Guide > Interceptors > Static Parameters Interceptor
Added by Jay Bose, last edited by Philip Luppens on Feb 10, 2007  (view change) show comment

This interceptor populates the action with the static parameters defined in the action configuration. If the action implements Parameterizable, a map of the static parameters will be also be passed directly to the action. The static params will be added to the request params map, unless "merge" is set to false.

Parameters are typically defined with <param> elements within xwork.xml.

Parameters

  • None

Extending the Interceptor

There are no extension points to this interceptor.

Examples

<action name="someAction" class="com.examples.SomeAction">
    <interceptor-ref name="staticParams">
         <param name="parse">true</param>
         <param name="overwrite">false</param>
    </interceptor-ref>
    <result name="success">good_result.ftl</result>
</action>