Navigation Trail: HomePage / StrutsProjectPages / StrutsDeveloperPages / JamesMitchell / MailDocumentation
I use this functionality currently. All I did was extend ActionMapping, add my properties, and in the struts-config.xml, assigned the type attribute of the action-mappings element my extended ActionMapping class name. Struts will then use introspection to identify and assign the new properties their corresponding values. <action-mappings type="com.companyname.BaseActionMapping"> It's an easy way to extend ActionMapping class. robert