Java上传文件错误java.lang.NoSuchMethodException的解决办法
错误详情:
java.lang.NoSuchMethodException: [Lorg.springframework.web.multipart.MultipartFile;.<init>() at java.lang.Class.getConstructor0(Unknown Source) at java.lang.Class.getDeclaredConstructor(Unknown Source) at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:104) at org.springframework.web.method.annotation.ModelAttributeMethodProcessor.createAttribute(ModelAttributeMethodProcessor.java:137) at org.springframework.web.servlet.mvc.method.annotation.ServletModelAttributeMethodProcessor.createAttribute(ServletModelAttributeMethodProcessor.java:80)
解决办法:在方法里加上参数注解 @RequestParam
这个错误是在使用wangEditor配置多文件上传的时候出现的,使用单个文件上传没有这个问题。
直接使用多文件上传一直报错,就用了单文件循环。
代码如下:
@RequestMapping(value="uploadFilesForWEditor",method={RequestMethod.GET,RequestMethod.POST}) @ResponseBody public static Map<String,Object> uploadFilesForWEditor(@RequestParam("files")MultipartFile[] files,HttpServletRequest request,HttpServletResponse response){ Map<String,Object> map=new HashMap<>(); List<String> url = new ArrayList<>(); for (int i = 0; i < files.length; i++) { String result=FileUploadUtils.fileUpload(files[i], request, response); if(result!=""){ url.add(result); } } if(url.size()>0){ map.put("errno",0); map.put("msg","上传成功"); map.put("data",url); }else{ map.put("errno",1); map.put("msg","上传失败"); map.put("data",url); } return map; }
FileUploadUtils:
public static String fileUpload(MultipartFile file,HttpServletRequest request,HttpServletResponse response){ //获取图片的原名字 String oldName=file.getOriginalFilename(); String timeName=System.currentTimeMillis()+"_"; String newName=timeName+oldName; //获取项目的路径 在项目路径下新建文件夹 String path= "D:/uploadFile"; //新建 uploadFile 文件夹 File parentPath=new File(path); if(!parentPath.exists()){ parentPath.mkdirs(); } String src=""; try { file.transferTo(new File(parentPath,newName)); File theFile=new File(parentPath+"/"+newName); if(theFile.exists()){ //拼接图片的相对路径作为URL src="/"+newName; }else{ src=""; } } catch (IllegalStateException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return src; }
记录错误。
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对脚本之家的支持。如果你想了解更多相关内容请查看下面相关链接
相关文章
Java中通过ZipOutputStream类如何将多个文件打成zip
ZipOutputStream 是Java中用于创建ZIP文件的类,它是 java.util.zip 包中的一部分,通过使用 ZipOutputStream ,可以将多个文件压缩到一个ZIP文件中,这篇文章主要介绍了Java中(ZipOutputStream)如何将多个文件打成zip,需要的朋友可以参考下2023-09-09详解Maven profile配置管理及激活profile的几种方式
这篇文章主要介绍了详解Maven profile配置管理及激活profile的几种方式,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2021-01-01Java中使用fileupload组件实现文件上传功能的实例代码
这篇文章主要介绍了Java中使用fileupload组件实现文件上传功能的实例代码,需要的朋友可以参考下2017-05-05Mybatis SqlSessionFactory与SqlSession详细讲解
SqlSessionFactory是MyBatis的核心类之一,其最重要的功能就是提供创建MyBatis的核心接口SqlSession,所以我们需要先创建SqlSessionFactory,为此我们需要提供配置文件和相关的参数2022-11-11spring boot starter actuator(健康监控)配置和使用教程
这篇文章主要介绍了spring-boot-starter-actuator(健康监控)配置和使用教程,本文给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下2018-06-06springboot 自定义404、500错误提示页面的实现
springboot 默认已经提供了一套处理异常的机制。在 springboot 中提供了一个名为 BasicErrorController 的类来处理 /error 请求,然后跳转到默认显示异常的页面来展示异常信息,本文就详细的介绍一下,感兴趣的可以了解一下2021-11-11
最新评论