WebFlux 构建的文件上传应用,使用REST 接口
dependencies {
implementation('org.springframework.boot:spring-boot-starter-webflux')
implementation('org.projectlombok:lombok')
testImplementation('org.springframework.boot:spring-boot-starter-test')
testImplementation('io.projectreactor:reactor-test')
}
- REST 接口
@RestController
@RequestMapping("/upload")
@Slf4j
public class MultipleController {
@PostMapping(value = "", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
Flux<String> upload(@RequestBody Flux<Part> parts) {
return parts
.filter(part -> part instanceof FilePart)
.ofType(FilePart.class)
.flatMap(filePart -> filePart.transferTo(new File(filePart.filename()))
.log()
.thenReturn(filePart.filename() + " Upload success"));
}
}
- 添加上传页面
index.html
<form enctype="multipart/form-data" action="/upload" method="post">
<input type="file" name="uploadFile">
<br>
<button type="submit">Submit</button>
</form>
- CustomWebFilter.java 访问时跳转到首页
@Component
public class CustomWebFilter implements WebFilter {
@Override
public Mono<Void> filter(ServerWebExchange exchange, WebFilterChain chain) {
if ("/".equals(exchange.getRequest().getURI().getPath())) {
return chain.filter(
exchange.mutate()
.request(
exchange.getRequest()
.mutate()
.path("/index.html")
.build()
)
.build()
);
}
return chain.filter(exchange);
}
}
-
启动应用
-
访问 http://localhost:8080,上传文件成功后可以在当前目录下看到文件