jsp 网站压力测试 工具
刚刚做完的一个jsp小网站,想得知其稳定性及能够承受多少用户,响应时间如何,不知道用什么压力测试工具比较好? JSP 压力测试 ?工具
[解决办法]
第一,可以使用apache ab工具,这个能很全面的测试你的网站并发数;
第二,可以使用java线程模拟用户去访问你的网站,通过调整线程数,得到一个临界值。代码如下:
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.net.URLConnection;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class HttpConnection {
/**
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
// 测试的网站URL
final URL url = new URL("http://www.ucas.ac.cn");
// 并发数量
final int concurrentNum = 20;
ExecutorService pool = Executors.newCachedThreadPool();
for (int i = 0; i < concurrentNum; i++) {
pool.execute(new Runnable() {
@Override
public void run() {
try {
while (true) {
URLConnection connection = url.openConnection();
InputStream inStream = connection.getInputStream();
byte[] buff = new byte[1024];
int len = -1;
while ((len = inStream.read(buff)) != -1) {
try {
Thread.sleep(10);
//System.out.println(new String(buff));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
} catch (IOException e) {
e.printStackTrace();
}
}
});
}
}
}