Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/daggerok/spring-webflux-upload-download-files
This repository demonstrates how to upload and download files using Spring WebFlux
https://github.com/daggerok/spring-webflux-upload-download-files
download-file file-server http-requests java11 java17 java18 reactive restclient spring-boot spring-webflux upload-file
Last synced: 28 days ago
JSON representation
This repository demonstrates how to upload and download files using Spring WebFlux
- Host: GitHub
- URL: https://github.com/daggerok/spring-webflux-upload-download-files
- Owner: daggerok
- Created: 2022-05-02T16:37:37.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-05-02T16:52:34.000Z (almost 3 years ago)
- Last Synced: 2024-11-11T15:35:39.447Z (3 months ago)
- Topics: download-file, file-server, http-requests, java11, java17, java18, reactive, restclient, spring-boot, spring-webflux, upload-file
- Language: Kotlin
- Homepage:
- Size: 61.5 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring Boot Webflux files Upload / Download [![tests](https://github.com/daggerok/spring-webflux-upload-download-files/actions/workflows/tests.yml/badge.svg)](https://github.com/daggerok/spring-webflux-upload-download-files/actions/workflows/tests.yml)
This repository demonstrates how to upload and download files using Spring WebFlux```bash
./mvnw clean ; ./mvnw clean compile spring-boot:start
http --form --multipart --boundary=xoxo post :8080/api/v1/upload [email protected]
http :8080/api/v1/uploads
http -f post :8080/api/v1/download/README.md > target/README.md
./mvnw spring-boot:stop
```## RTFM
* [How to stream file from Multipart/form-data in Spring WebFlux](https://errorsfixing.com/how-to-stream-file-from-multipart-form-data-in-spring-webflux/)
* [JDK Version Range](https://github.com/spring-projects/spring-framework/wiki/Spring-Framework-Versions#jdk-version-range)
* [Official Apache Maven documentation](https://maven.apache.org/guides/index.html)
* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/2.6.7/maven-plugin/reference/html/)
* [Create an OCI image](https://docs.spring.io/spring-boot/docs/2.6.7/maven-plugin/reference/html/#build-image)
* [Coroutines section of the Spring Framework Documentation](https://docs.spring.io/spring/docs/5.3.19/spring-framework-reference/languages.html#coroutines)
* [Spring Reactive Web](https://docs.spring.io/spring-boot/docs/2.6.7/reference/htmlsingle/#web.reactive)
* [Spring Configuration Processor](https://docs.spring.io/spring-boot/docs/2.6.7/reference/htmlsingle/#configuration-metadata-annotation-processor)
* [Building a Reactive RESTful Web Service](https://spring.io/guides/gs/reactive-rest-service/)