DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
| Code Block |
|---|
<action name="myAction" class=" MyAction">
<param name="myStaticParam1">myStaticValue1</param>
<param name="myStaticParam2">myStaticValue2</param>
<param name="myStaticParam3">myStaticValue3</param>
</action>
|
- Ensure that
static-paramsstaticParamsInterceptor is included in the Action's stack.The default stack already includes
static-paramsstaticParams.
- Edit the Action so that it implements the Parameterizable interface.
...
- Ensure the Action defines a
setParams(Map)method.
- The
static-paramsstaticParamsInterceptor will set the defined values to the Map, using the name as the entry key.
...
- Ensure that the Action defines JavaBean properties corresponding to the
paramelements in the action mapping.
- The
static-paramsstaticParamsInterceptor will set the defined values to each JavaBean property that corresponds to aparamelement.
...