Posts

Showing posts with the label WebFlux

Spring Boot - WebFlux - Video Streaming example

Image
Hello everyone, today I am going to show you how to stream a video using Spring Boot + WebFlux.  Streaming means the continuous transmission of video files from a server to a client. You can download the source code from our Github repository. For more topics, click the below link: Spring Boot + Angular + MongoDB CRUD example Spring Boot + React JS + MongoDB CRUD example   Spring Boot + Vue + MongoDB CRUD example   QUARKUS + Hibernate CRUD example - Creating a CRUD REST API/Service User Interface Project Structure Gradle Build(build.gradle)  plugins { id 'org.springframework.boot' version '2.5.4' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' } group = 'com.knf.demo' version = '0.0.1-SNAPSHOT' sourceCompatibility = '11' repositories { mavenCentral() } dependencies { implementation 'org.springframework.boot:spring-boot-starter-webflux' testImplementation 'org.springfram