First of all, UseCodeTags, not bold, for posting code.
Secondly, get rid of the useBean tag. Just remove it. It's not needed and will just create problems when it gets in the way.
Now, is there a way, to keep the BeanUtils object into sesstion and have the form re-populated with the values that where present in Bean object ?
The bean created by bean utils is an object like any other. So you can place it in the session just like any other object. Why did you think that you could not?
Is there a way, that I can use the bean values to re-populate the form ?
Of course. For text elements, just use the
value attribute. For select elements, put
selected on the appropriate option. For checkboxes and radio elements, set the
checked attribute as appropriate.
html:form
html:form? You are using Struts?