我们如何使用Apache JMeter模拟webflux客户端(React式)

dba5bblo  于 2022-11-09  发布在  Apache
关注(0)|答案(1)|浏览(188)

我找不到任何选项,使头使用application/x-nd-json或任何其他在Apache JMeter中模拟流客户端进行负载测试。

voase2hg

voase2hg1#

我认为您需要使用JSR223 Sampler,并使用WebClient连接到WebFlux端点并执行请求,类似于:

def client = org.springframework.web.reactive.function.client.WebClient
.create('https://your-server-host:your-server-port')

def result = client.get()
.uri('your-endpoint')
.retrieve()
.bodyToMono(your-entity.class)

result.subscribe(System.out::println)

您也可以考虑creating your own plugin for JMeter

相关问题