restful接口上传文件提示Required request part 'file' is not present
Controller中的参数名首先要和接口请求中的参数名一致。
其次,还需要在spring的配置文件中配置解析器
<bean name="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="defaultEncoding" value="UTF-8"></property>
</bean>
还没有评论,来说两句吧...