2014-08-30 228 views
1

我想在應用程序服務器上使用jmeter執行負載測試後期方法。我多次在應用服務器上使用jmeter執行負載測試。我不知道如何處理jmeter中的post方法進行負載測試?如何處理Jmeter中的post方法進行負載測試?

POST HTTP REQUEST:

 
Content-Type for POST is "application/x-www-form-urlencoded" 

    REQUEST : http://localhost:8080/configserver/execute?command=Login 

POST Parameter: 

    data={ 
     "email": "[email protected]", 
     "password": "12345" 
    } 

Output: 

    { 
     "status_code": "0", 
     "status_message": "", 
     "result": { 
     "user_id": "1", 
     "session_token": "abcd" 
     } 
    } 

回答