Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 1.71 KB

File metadata and controls

21 lines (19 loc) · 1.71 KB

Spring Boot Webflux files Upload / Download tests

This repository demonstrates how to upload and download files using Spring WebFlux

./mvnw clean ; ./mvnw clean compile spring-boot:start
http --form --multipart --boundary=xoxo post :8080/api/v1/upload file@README.md
http :8080/api/v1/uploads
http -f                                 post :8080/api/v1/download/README.md    > target/README.md
./mvnw spring-boot:stop

RTFM