if suppose there is a text field around which a spring:bind tag is added with command object. that text field is updted twice or thrice.
What values are transfered to Command object ?
All the values entered during that period or just last entry...
e.g
<spring:bind path="${loginCommand.username}">
<input type="text" name="username" >
<spring:bind>
and we entered amit then erased it and then wrote jeetu.
will both jeetu and amit will be added to command or just jeetu.


Reply With Quote