Required request part 'file' is not present

  @RequestMapping(path = "/detail_upload", method = RequestMethod.POST)
    public String detailUpload(@RequestParam MultipartFile file) throws Exception {
        // 获取文件名
        String fileName = file.getOriginalFilename();
        if (StringUtils.isEmpty(fileName)) {
            return "文件不能为空";
        }
    }

springmvc上传文件的时候 ,在controller使用这样的方法接收二进制流文件,报了下面这个错:

 org.springframework.web.multipart.support.MissingServletRequestPartException: Required request part 'file' is not present

最终查明原因是,在spring-mvc.xml配置文件里的这段代码被注释掉了



    
    

真想拉他出去打两顿!!!

你可能感兴趣的:(常用工具)