org.springframework.web.multipart.MultipartException: The current request is not a multipart request

来源:互联网 发布:生日相册制作软件 编辑:程序博客网 时间:2024/06/07 06:02

SpringMVC异常:org.springframework.web.multipart.MultipartException: The current request is not a multipart request

1,此异常出现在使用springmvc做文件上传的时候

2,原因是form的属性没有设置正确,必须是enctype="multipart/form-data" method="post" ,get是不能做文件上传的

1 0