This is my controller:
@RequestMapping(value = "/admin/users/photo", method = RequestMethod.POST)
public ModelAndView editUser(@RequestParam("file") MultipartFile file,
Principal principal) {
// code never gets here
}
my mvc-dispatcher-servlet.xml
<bean id="multipartResolver"
class="org.springframework.web.multipart.support.StandardServletMultipartResolver">
</bean>
pom.xml:
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.3.1</version>
</dependency>
form itself:
<form action="${pageContext.request.contextPath}"
method="POST"
enctype="multipart/form-data">
<input type="file"
name="file"
/>
<input type="submit" value="Добавить">
</form>
This is what browser says:
How to fix that?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…