Hi, what is the use of set-parameter, in struts-config.xml file for SPECIFIC ACTION? how can i retreive values assigned in set-property from my action class?
Thanks aziz dhanani
Andr� Branco
Greenhorn
Joined: Sep 28, 2004
Posts: 7
posted
0
Hi!
I have the same doubt, does anybody knows about this stuff?
Both parameter and property are actually related to the ActionMapping rather than the Action.
See the Struts Catalog for an example of how to use the parameter attribute.
As for the property, you need to extend ActionMapping and define your custom property that matches the value specified in set-property. Then modify your Struts config to use the custom ActionMapping class instead of the default one. Use your custom property getter method to access the value.