阅读本文章之前,需要有juc相关基础知识
-
压测工具的核心就是多线程处理并发
- 首先我们创建一个类 HpRequest 用于处理网络的请求
package com.HpmTools.core;
import com.sun.net.httpserver.Headers;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URI;
import java.net.URL;
import java.net.URLConnection;
public class HpRequest {
static class ResponBody{
boolean IsSucess;
int TimeLen;
public boolean isSucess() {
return IsSucess;
}
public int getTimeLen() {
return TimeLen;
}
public ResponBody(boolean isSucess, int timeLen) {
IsSucess = isSucess;
TimeLen = timeLen;
}
}
public static ResponBody StartRequst(HttpURLConnection urlConnection) throws IOException {
urlConnection.setConnectTimeout(3000);
urlConnection.setReadTimeout(4000);
urlConnection.connect();
return new ResponBody(urlConnection.getResponseCode()==200,100);
}
}
-
编写完网络请求模块 ,现在我们需要编写核心 线程处理类 HpmCore
package com.HpmTools.core;
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.URL;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import java.util.concurrent.CountDownLatch;
public class HpmCore {
private int PMCount=100;
private int ConConut=10;
private URL url;
private String Method;
private static final List<String> RequstMethod = Arrays.asList("POST","GET","PUT","DELETE") ;
public HpmCore(int PMCount, int conConut,URL url) {
this.PMCount = PMCount;
ConConut = conConut;
}
public HpmCore() {
}
public void SetUri(URL _url){
url=_url;
}
public void AddMethod(String method) throws IOException {
if (!RequstMethod.contains(method)){
throw new RuntimeException("参数错误,请填写正确的参数");
}
this.Method=method;
}
public HttpURLConnection GetUrlConnection(){
try {
HttpURLConnection connection= (HttpURLConnection) url.openConnection();
connection.setRequestMethod(Method);
return connection;
}
catch (IOException e) {
e.printStackTrace();
}
return null;
}
public void StartManometry() throws InterruptedException {
List<HpRequest.ResponBody> list=new LinkedList<>();
for (int i=0;i<PMCount/ConConut;i++) {
CountDownLatch Latch = new CountDownLatch(ConConut);
for (int j = 0; j < ConConut; j++) {
new Thread(new Runnable() {
@Override
public void run() {
try {
HpRequest.ResponBody body = HpRequest.StartRequst(GetUrlConnection());
Latch.countDown();
synchronized (list) {
list.add(body);
}
} catch (IOException e) {
e.printStackTrace();
}
}
}).start();
}
Latch.await();
System.out.println("第"+i+"轮并发");
}
System.out.println("执行完毕");
}
}
现在我们编写测量类 目前只之前get请求
package com.HpmTools.core;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.HashMap;
public class HpCommandLine {
public static void main(String[] args) throws IOException, InterruptedException {
HpmCore core = new HpmCore();
core.SetUri(new URL("http://127.0.0.1:5000/test"));
core.AddMethod("GET");
core.StartManometry();
}
}
欢迎大家指正 项目地址:
github