MultipartFile文件上传300M以上,报异常java.lang.OutOfMemoryError: Java heap space
原因:FileCopyUtils.copy(mf.getBytes(),savefile);把MultipartFile转成字节流再存入文件解决:将流存到文件中try{FileOutputStreamoutput=openOutputStream(destination);try{IOUtils.copy(source,output);output.close();}finally{org.apa