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

来源:互联网 发布:网络安全保密管理制度 编辑:程序博客网 时间:2024/05/21 08:55

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是不能做文件上传的

阅读全文
0 0