我找不到任何选项,使头使用application/x-nd-json或任何其他在Apache JMeter中模拟流客户端进行负载测试。
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
1条答案
按热度按时间voase2hg1#
我认为您需要使用JSR223 Sampler,并使用WebClient连接到WebFlux端点并执行请求,类似于:
您也可以考虑creating your own plugin for JMeter