I am using Struts2 and an action implementing the Preparable
interface.
When I submit the form, action properties are not being set in prepare()
method of action. I get the values in the action method (eg. execute()
), but they are empty in the prepare()
method.
How can I get the properties set before running the prepare()
method ?