Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 390 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 390 Bytes

dubbo-test-tool

Simple dubbo api test tool by http

curl -X POST "localhost:9999/dubbo/test" -H 'Content-Type: application/json' -d'
{
    "dependency": "com.mycompany:dubbo-test-api:1.0.0",
    "url": "dubbo://127.0.0.1:20889",
    "method": "com.mycompany.test.sayHello",
    "args": ["shi-yuan"]
}
'

{
    "success": true,
    "code": 0,
    "data": "hello, shi-yuan !"
}