Video hosting demo using Spring Boot and WebFlux
Demo is working but it's still in progress
Inspired by this post: https://melgenek.github.io/spring-video-service
- Clone repository
- Create folder where application will store video files and make it accessible
- Create property file from sample:
cp ./src/main/resources/application.properties.sample ./src/main/resources/application.properties
- Edit created property file: change video folder path to the one you created before
spring.servlet.multipart.enabled=true
spring.servlet.multipart.file-size-threshold=2KB
spring.servlet.multipart.max-file-size=2000MB
spring.servlet.multipart.max-request-size=2150MB
video.location=/home/admin/videos
- Run project:
mvn spring-boot:run
- Go to localhost:8080 in browser to see home page of application