Suppose that i have a nested Bean in a model class.
public Class Bean_B{
private String text;
private int number;
...
}
public Class Bean_A{
private Bean_B beanB;
...
}
A form
<s:form action= “register”>
<s:textField key=“beanA.beanB.text/>
<s:textField key=“beanA.beanB.number/>
…
<s:submit>
When i submit the form the action class populate the nested properties text and
number?
Un saludo,
José A.

