GF wrote:
do you think is there any issue adding <interceptor-ref
name="staticParams"/> also before the first <interceptor-ref
name="params"/> in this way:

                <interceptor-ref name="staticParams"/>
                <interceptor-ref name="params"/>
...
                <interceptor-ref name="prepare"/>
...
                <interceptor-ref name="staticParams"/>
                <interceptor-ref name="params"/>

Almost. Really it should be the other way around, since you don't want user-set parameters to override your static parameters.

And for 2.1.1 you also need: "actionMappingParams"


Which means it should really be:

<interceptor-ref name="params"/>
<interceptor-ref name="actionMappingParams"/>
<interceptor-ref name="staticParams"/>
...
<interceptor-ref name="prepare"/>
...
<interceptor-ref name="params"/>
<interceptor-ref name="actionMappingParams"/>
<interceptor-ref name="staticParams"/>

-Dale

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to