https://github.com/kuaikuaikim/dubbo_jsonrpc_demo
a simple demo for dubbo with jsonrpc protocol(dubbo jsonrpc简单例子)
https://github.com/kuaikuaikim/dubbo_jsonrpc_demo
Last synced: 3 months ago
JSON representation
a simple demo for dubbo with jsonrpc protocol(dubbo jsonrpc简单例子)
- Host: GitHub
- URL: https://github.com/kuaikuaikim/dubbo_jsonrpc_demo
- Owner: kuaikuaikim
- Created: 2016-01-05T05:23:49.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-02-21T03:03:38.000Z (over 8 years ago)
- Last Synced: 2025-04-30T20:06:02.282Z (6 months ago)
- Language: Java
- Homepage:
- Size: 4.88 KB
- Stars: 18
- Watchers: 4
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Dubbo JSONRpc Demo
========================Run Provider
---------------------```bash
mvn jetty:run
```Consumer Client:
--------------------------CURL for test:
---------------------
```bash
curl -i -H 'content-type: application/json' -X POST -d '{"jsonrpc": "2.0", "method": "hello", "params": [ "World"],"id": 1 , "version":"1.0.0"}' 'http://127.0.0.1:8080/com.dubbo.demo.HelloService'
```