I have an object that has a nested one that is binded in the same view:
Code:class MyForm{ private String var1; private String var2; private MyNestedForm nested; } class MyNestedForm{ private String var3; }
and in my jsp:
As I enter some value in var1 and var2 in my form everything goes well (validations, prev/back buttons...)Code:<form:input path="var1" /> <form:input path="var2" /> <form:input path="nested.var3"/>
But var3 maintain always the last value inserted! Even if I restart the flow from the beginning
Do I missing something?
Many thanks for your help.


Reply With Quote

