This page gives you a quick reference to get spring-webflux dependency for Maven or Gradle projects. You can also download the spring-webflux jar dependency, the link given at the "Download JAR File" section.
Spring WebFlux framework is part of Spring 5 and provides reactive programming support for web applications.
Spring WebFlux framework is part of Spring 5 and provides reactive programming support for web applications.
Spring WebFlux Maven Dependency
Copy below Spring WebFlux maven dependency and paste in your project pom.xml file:
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webflux -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webflux</artifactId>
<version>5.2.1.RELEASE</version>
</dependency>
Spring WebFlux Gradle Dependency
Copy below Spring WebFlux gradle dependency and paste in your project build.gradle file:
// https://mvnrepository.com/artifact/org.springframework/spring-webflux
compile group: 'org.springframework', name: 'spring-webflux', version: '5.2.1.RELEASE'
Comments
Post a Comment