dubbo接口调用总结

1、需要知道对应的接口名称和调用方法名称,可以找开发要


image.png

2、需要配置nacos注册中心,可以找开发要地址


image.png

image.png

3、需要知道nacos中注册的服务的版本号,问开发也可以
image.png

4、在工具中设置版本号


image.png

5、dubbo接口调用参数类型对照表:
https://github.com/thubbo/jmeter-plugins-for-apache-dubbo/wiki/ParameterComparisonTable
6、dubbo接口复杂情况调用方式:
https://github.com/thubbo/jmeter-plugins-for-apache-dubbo/wiki/FAQ

image.png

image.png

7、dubbo接口中Instant参数的时间入参:
"expectArrivalTimeStart":{"seconds":1609430400,"nanos":0,"class":"java.time.Instant"}
expectArrivalTimeStart字段类型时Instant,该类中有两个参数seconds和nanos,
seconds是指时间戳。nanos是更精确的纳秒精度。它和System.currentTimeMillis()返回的long相比,只是多了更高精度的纳秒。调接口时传0即可。

你可能感兴趣的:(dubbo接口调用总结)