Java WebClient 是 Java 11 中引入的一个用于实现响应式编程的客户端库。要使用 WebClient 发送请求,首先需要导入相关依赖,然后创建一个 WebClient 实例,并使用其方法来发送请求。以下是一个简单的示例,展示了如何使用 WebClient 发送 GET 请求:
pom.xml
文件中添加以下依赖:<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>
import org.springframework.web.reactive.function.client.WebClient;
import reactor.core.publisher.Mono;
public class WebClientExample {
public static void main(String[] args) {
// 创建一个 WebClient 实例
WebClient webClient = WebClient.create("https://jsonplaceholder.typicode.com");
// 发送 GET 请求并获取结果
Mono<String> response = webClient.get()
.uri("/todos/1")
.retrieve()
.bodyToMono(String.class);
// 输出响应结果
response.subscribe(System.out::println);
}
}
在这个示例中,我们创建了一个 WebClient 实例,指定了目标 URL。然后,我们使用 get()
方法指定请求的 URI,并使用 retrieve()
和 bodyToMono()
方法处理响应。最后,我们订阅这个 Mono 对象,当响应到达时,将其输出到控制台。
你可以根据需要修改这个示例,以发送其他类型的请求(如 POST、PUT、DELETE 等),并处理响应数据。要了解更多关于 WebClient 的信息,请参考官方文档:https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html#webflux-client