Spring-Boot:400即使参数存在,也会出现错误请求错误

时间:2018-02-27 06:27:24

标签: java spring spring-boot http-status-code-400 bad-request

在以下方法中有两个参数childFilefile,我通过邮递员运行此调用,但是当我检查日志时它会给我400个错误请求错误它说明参数{{1} }不存在,我附上代码,错误和邮递员截图请告诉我是什么问题

Postman Call

控制器

childFile

日志

@Transactional
    @RequestMapping(method = RequestMethod.POST, value = "api/addchild",produces="application/json")
    public  ResponseEntity<?> child(Authentication authentication,
            @RequestParam(value="childFile") String childFile, @RequestParam(value="file") MultipartFile file) {

        ObjectMapper mapper = new ObjectMapper();
        Child child;
        try {
            child=mapper.readValue(childFile, Child.class);
            Child createdChild=childRepo.save(child);
            if(createdChild!=null)
            {
             childService.createChildPhoto(file, createdChild.getId());
            }
            return ResponseEntity.ok("child created");
        } catch (IOException e1) {
            e1.printStackTrace();
        }
        return ResponseEntity.status(HttpStatus.BAD_REQUEST).body("Child can not be created , please check your headers and string body again.");   
    }

2 个答案:

答案 0 :(得分:3)

所以我找到了解决这个问题的方法。问题是当邮递员删除内容类型标题时工作正常,邮递员自己插入标题

答案 1 :(得分:0)

您正在使用带有简单请求参数的表单数据,而不是它的工作原理。如果您尝试将json和文件一起发送,请确保“childFile”的内容类型为“application / json”,并通过带注释@RequestPart的请求正文接收它,并且映射生成应为“multipart / form-data”那么它就能完成这项工作。