首页 > 解决方案 > 当前请求不是多部分请求 Spring Boot 和 Postman(上传 json 文件加上额外字段)

问题描述

Current request is not a multipart request尝试为我的请求上传 json 文件和额外的 id 或 dto 对象时出现此错误,因为这也是填充我的数据库所必需的。

当我只发送 json 文件时,一切都上传得很好,但是现在我已经将 id 字段添加到相关的方法和 Postman 中,我收到了这条消息并且努力调试和修复它,如果我能得到任何请帮忙。

这些是涉及的部分:

@Controller
@RequestMapping("/api/gatling-tool/json")
public class StatsJsonController {

@Autowired
StatsJsonService fileService;

@PostMapping(value = "/import")
public ResponseEntity<ResponseMessage> uploadFile(@RequestParam("file") MultipartFile file, @RequestBody CategoryQueryDto categoryQueryDto) {
    String message = "";

    UUID id = categoryQueryDto.getId();

    if (StatsJsonHelper.hasJsonFormat(file)) {
        try {
            fileService.save(file, id);

            message = "Uploaded the file successfully: " + file.getOriginalFilename();
            return ResponseEntity.status(HttpStatus.OK).body(new ResponseMessage(message));
        } catch (Exception e) {
            message = "Could not upload the file: " + file.getOriginalFilename() + "!";
            return ResponseEntity.status(HttpStatus.EXPECTATION_FAILED).body(new ResponseMessage(message));
        }
    }

    message = "Please upload a json file!";
    return ResponseEntity.status(HttpStatus.BAD_REQUEST).body(new ResponseMessage(message));
}

}




@Service
public class StatsJsonService {

@Autowired
StatsJsonRepository repository;

public void save(MultipartFile file, UUID id) {
    StatsEntity statsEntity = StatsJsonHelper.jsonToStats(file, id);
    repository.save(statsEntity);
}

}


public class StatsJsonHelper {

public static String TYPE = "application/json";

public static boolean hasJsonFormat(MultipartFile file) {

    if (!TYPE.equals(file.getContentType())) {
        return false;
    }

    return true;
}

public static StatsEntity jsonToStats(MultipartFile file, UUID id) {

    try {
        Gson gson = new Gson();

        File myFile = convertMultiPartToFile(file);

        BufferedReader br = new BufferedReader(new FileReader(myFile));

        Stats stats = gson.fromJson(br, Stats.class);
         StatsEntity statsEntity = new StatsEntity();
        
        statsEntity.setGroup1Count(stats.stats.group1.count);
        statsEntity.setGroup1Name(stats.stats.group1.name);
        statsEntity.setGroup1Percentage(stats.stats.group1.percentage);


        statsEntity.setId(id);

        return statsEntity;

    } catch (IOException e) {
        throw new RuntimeException("fail to parse json file: " + e.getMessage());
    }
}

在此处输入图像描述

在此处输入图像描述

在此处输入图像描述

非常感谢。

https://github.com/francislainy/gatling_tool_backend/pull/3/files

更新

根据@dextertron 的回答添加了更改(收到 415 不支持的媒体类型错误)

@PostMapping(value = "/import")
public ResponseEntity<ResponseMessage> uploadFile(@RequestParam("file") MultipartFile file, @RequestBody CategoryQueryDto categoryQueryDto) {

在此处输入图像描述

在此处输入图像描述

即使我将这部分从 application/json 更改为 multiform/data,同样的错误仍然存​​在。

public static String TYPE = "multiform/data";

标签: javaspring-bootrestpostmancontent-type

解决方案


我在控制器中尝试了几种组合。

为我工作的那个看起来像这样。基本上我们必须将两个参数作为@RequestParam.

    @PostMapping("/import")
    public ResponseEntity<Object> uploadFile(@RequestParam("file") MultipartFile file, @RequestParam String id) {
        return null;
    }

我知道您想通过CategoryQueryDtoas@RequestBody但它似乎在多部分请求中@RequestParam并且@RequestBody似乎不能一起工作。

所以你海事组织你可以在这里做两件事:-

  1. 如上所述设计控制器,只需id在请求中发送 as 字符串并fileService.save(file, id);直接使用它。 在此处输入图像描述

  2. 如果您仍想使用CategoryQueryDto,您可以发送它{"id":"adbshdb"},然后将其转换为CategoryQueryDto使用对象映射器。

这就是您的控制器的外观 -

    @PostMapping("/import")
    public ResponseEntity<Object> uploadFile(@RequestParam("file") MultipartFile file, @RequestParam String categoryQueryDtoString) throws JsonProcessingException {
        ObjectMapper objectMapper = new ObjectMapper();
        CategoryQueryDto categoryQueryDto = objectMapper.readValue(categoryQueryDtoString, CategoryQueryDto.class);
// Do your file related stuff
        return ResponseEntity.ok().body(file.getOriginalFilename());
    }

这就是您可以使用邮递员/ARC发送请求的方式 -

在此处输入图像描述

PS:不要忘记像这样设置 Content-Type 标头 - 在此处输入图像描述


推荐阅读