you can also override the reset() method like this:
public void reset(ActionMapping mapping, HttpServletRequest request){
this.initialize();
}in the dynamic form class ,there is a initialize() method which will clear all the properties. The initialize() is called only when the bean is instantiated.

