Java Reference
In-Depth Information
The default is DefaultActionBeanContextFactory . Here's an example:
<init-param>
<param-name> ActionBeanContextFactory.Class </param-name>
<param-value>
stripesbook.nonext.MyActionBeanContextFactory
</param-value>
</init-param>
ActionBeanContext.Class
This is the ActionBeanContext subclass to use instead of the default
ActionBeanContext class. This is loaded by DefaultActionBeanContextFac-
tory . Here's an example:
<init-param>
<param-name> ActionBeanContext.Class </param-name>
<param-value> stripesbook.nonext.MyActionBeanContext </param-value>
</init-param>
ActionBeanPropertyBinder.Class
This is the implementation of the ActionBeanPropertyBinder interface,
responsible for validating, type converting, and binding request param-
eters. The default is DefaultActionBeanPropertyBinder . Here's an example:
<init-param>
<param-name> ActionBeanPropertyBinder.Class </param-name>
<param-value>
stripesbook.nonext.MyActionBeanPropertyBinder
</param-value>
</init-param>
ActionResolver.Class
This is the implementation of the ActionResolver interface, which deter-
mines the action bean and event handler method that handles a re-
quest. The default is NameBasedActionResolver . Here's an example:
<init-param>
<param-name> ActionResolver.Class </param-name>
<param-value> stripesbook.nonext.MyActionResolver </param-value>
</init-param>
Configuration.Class
This is the implementation of the Configuration interface. The default is
RuntimeConfiguration . Note that this is the class that reads all other con-
figuration parameters. You can provide your own implementation and
 
Search WWH ::




Custom Search