我编写了一个基于Java的rest API项目.我想测试API的性能.
这里的表现可以分为两个.
我知道如何测试或测量#1,但我不知道如何测量#2.
#2的更多信息
假设我有一个映射到休息终点的方法.
我想知道花了多少时间
>将数据解析为方法参数
>执行方法中的代码
>将响应转换回JSON所花费的时间
谢谢
最佳答案
对于请求 – 响应性能测试,您可以使用SoapUI或Jmeter:
原文链接:https://www.f2er.com/spring/431340.htmlhttp://www.soapui.org/rest-testing/getting-started.html
对于代码执行时间,“分析”是最佳选择,因为它不需要代码修改,但对于非专家用户来说可能很困难.
一种旧的时尚方式,修改代码就是记录(用Log4j或类似方法)方法的执行时间:
long startT = System.nanoTime();
//Code you want to measure
long endT = System.nanoTime();
long executionTime = (endT - startT); //divide by 1000000 to get millisecs.
//Log this in specific category and level,so you can turn it on/off depending on your needs