I have an object that has a nested one that is binded in the same view:
class MyForm{
private String var1;
private String var2;
private MyNestedForm nested;
}
class MyNestedForm{
private String var3;
}
and in my jsp:
<form:input path="var1" />
<form:input path="var2" />
<form:input path="nested.var3"/>
As I enter some value in var1 and var2 in my form everything goes well (validations, prev/back buttons...) 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.