溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么進(jìn)行java并發(fā)模擬

發(fā)布時(shí)間:2021-10-19 16:25:48 來源:億速云 閱讀:92 作者:柒染 欄目:大數(shù)據(jù)

怎么進(jìn)行java并發(fā)模擬,很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

在project-1中新建controller,TestController.java內(nèi)容如下:

@RestController
@Slf4j
public class TestController {

    @GetMapping("/test")
    public String test() {
        return "test";
    }

}

需要依賴Slf4j包,需要在pom.xml文件中添加依賴:

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.6</version>
        </dependency>

POSTMAN工具測試

在postman工具中新建collection:

怎么進(jìn)行java并發(fā)模擬

并將測試url添加到這個(gè)collection中,點(diǎn)擊run,然后配置:


Apache bench工具

下載地址:https://www.apachelounge.com/download/

ab -n 1000 -c 50 http://localhost:8080/test

輸出結(jié)果如下:

C:\Users\vincent>ab -n 1000 -c 50 http://localhost:8080/test
This is ApacheBench, Version 2.3 <$Revision: 1843412 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/

Benchmarking localhost (be patient)
Completed 100 requests
Completed 200 requests
Completed 300 requests
Completed 400 requests
Completed 500 requests
Completed 600 requests
Completed 700 requests
Completed 800 requests
Completed 900 requests
Completed 1000 requests
Finished 1000 requests


Server Software:
Server Hostname:        localhost
Server Port:            8080

Document Path:          /test
Document Length:        4 bytes

Concurrency Level:      50
Time taken for tests:   0.673 seconds
Complete requests:      1000
Failed requests:        0
Total transferred:      136000 bytes
HTML transferred:       4000 bytes
Requests per second:    1486.74 [#/sec] (mean)
Time per request:       33.631 [ms] (mean)
Time per request:       0.673 [ms] (mean, across all concurrent requests)
Transfer rate:          197.46 [Kbytes/sec] received

Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:        0    0   0.3      0       1
Processing:     1   19  19.8     15     291
Waiting:        0   16  16.7     12     278
Total:          1   20  19.8     15     292

Percentage of the requests served within a certain time (ms)
  50%     15
  66%     19
  75%     23
  80%     24
  90%     33
  95%     62
  98%     84
  99%     99
 100%    292 (longest request)

-n 1000表示本次測試的總數(shù)為100個(gè)

-c 50表示本次請求的并發(fā)數(shù)是50

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI