Spring WebFlux文件上传:不支持的媒体类型415,支持分块上传
我在使用Spring的反应性框架处理文件上传时遇到了一些问题。我认为我正在遵循文档,但无法摆脱此415
/Unsupported Media Type
问题。
我的控制器如下所示(如下面的示例:https://docs.spring.io/spring/docs/current/spring-framework-reference/web-reactive.html#webflux-multipart-forms)
package com.test.controllers;
import reactor.core.publisher.Flux;
import org.springframework.http.MediaType;
import org.springframework.http.codec.multipart.FilePart;
import org.springframework.http.codec.multipart.Part;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class TestController {
@RequestMapping(value = "/upload", method = RequestMethod.POST, consumes = MediaType.MULTIPART_FORM_DATA_VALUE, produces = MediaType.APPLICATION_JSON_VALUE)
public Flux<String> uploadHandler(@RequestBody Flux<Part> parts) {
return parts
.filter(part -> part instanceof FilePart)
.ofType(FilePart.class)
.log()
.flatMap(p -> Flux.just(p.filename()));
}
}
发送到此终结点时,始终会得到相同的输出:
curl -X POST -F "data=@basic.ppt" http://localhost:8080/upload
---
"Unsupported Media Type","message":"Content type 'multipart/form-data;boundary=------------------------537139718d79303c;charset=UTF-8' not supported"
我也尝试使用@RequestPart("data")
,但收到类似的Unsupported Media Type
错误,只是文件的内容类型不同。
似乎Spring在将它们转换为Part
时遇到问题?我被困住了--任何帮助都是正确的!
解决方案
感谢@Kojot的回答,但在这种情况下,我发现问题是除了spring-webflux
之外,我还短暂地包含了spring-webmvc
。您的解决方案可能也会奏效,但我想坚持使用控制器样式,因此最终强制将spring-webmvc
排除在build.gradle
:
configurations {
implementation {
exclude group: 'org.springframework', module: 'spring-webmvc'
}
}
之后,它按照文档所述工作。
相关文章