you can try modelDriven
or simply create a javabean with fields matching your form and put it as an
attribute of or action
but you still need a getter setter for this bean

for example

in Action:
private FormBean myBean;

in JSP:

<s:textfield name="myBean.myProperty"/>

Reply via email to