I'm trying to bind a nested object with Spring 3, and I'm having issues.
JSP:
<portlet:actionURL var="formAction" />
<form:form id="add-objects-form" method="post" action="${formAction}">
<input name = "obj.a"...>
<input name = "obj.b"...>
<input type = "file" multiple="multiple" name="file"/>
</form>
Form Object:
class FormObject{
private final static Logger logger = ...
private MultipartFile file
private Obj obj
...getters and setters
}
Controller:
@RequestMapping(method = RequestMethod.POST)
public void uploadDocument(@ModelAttribute FormObject formObject, BindingResult results ) {
}
formObject
gets obj.a
and obj.b
, but file
is always null.
Add
modelAttribute="formObject"
in<form:form>
Also make sure you haven't excluded debug information from classes. If you have, or you are uncertain, specify
@ModelAttribute("formObject")
For handling files (multipart data) you need to specify the enctype for the form:
Update: since you are using a js-library for fileupload, here's what to do: