Cloudmersive Java WebClient-based Client SDK |
8/1/2022 - Cloudmersive Support |
Cloudmersive Java WebClient-based Client SDK is a native client SDK for Java that uses the WebClient framework. This SDK also includes an abstraction for file uploads.
Installing using Maven
Add a reference to the repository (we use Jitpack to dynamically compile the library from Github source):
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add a reference to the dependency:
<dependencies>
<dependency>
<groupId>com.github.Cloudmersive</groupId>
<artifactId>Cloudmersive.APIClient.Java.WebClient</artifactId>
<version>v4.1.2</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>5.3.23</version>
</dependency>
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>3.4.24</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webflux</artifactId>
<version>5.1.1.RELEASE</version>
</dependency>
</dependencies>
Sample Code
We provide a working sample virus scanning application using the WebClient SDK:
https://github.com/Cloudmersive/Java.WebClient.VirusScan.Example
|