Content type 'application/octet-stream' not supported for bodyType=boolean",

    @PostMapping("upload")
    public Result add(
            @RequestPart(value = "startTime") String startTime,
            @RequestPart(value = "id") String id,
            @RequestPart(value = "priority") boolean priority,
            @RequestPart(value = "file") FilePart filePart) {
        return service.upload(filePart, startTime, Long.parseLong(id),  priority);
    }
@RequestPart 只支持String类型
posted on 2022-11-10 14:34  知了不了了之  阅读(1074)  评论(0编辑  收藏  举报