commit | ad9f252e82724f39576eed4bf01d0dfdf99c7909 | [log] [tgz] |
---|---|---|
author | Xin.Zh <dragoncharlie@foxmail.com> | Wed Mar 15 12:00:45 2023 +0800 |
committer | GitHub <noreply@github.com> | Wed Mar 15 12:00:45 2023 +0800 |
tree | 76683ca3ca62a41dd0a6f0854a51db8dcef0492c | |
parent | f8f89dd6354e3d0ee67645ec8d2e837262806d4c [diff] | |
parent | 032d3f215b6ed108665972389e5f30a4655e93d1 [diff] |
Merge pull request #12 from PhilYue/feature/wasm Wasm Sample
samples for dubbo-go-pixiu
dubbogo/simple/nacos: http to dubbo with nacos registry
dubbogo/simple/triple: http to triple
dubbogo/simple/jaeger: pixiu with jaeger
dubbogo/simple/direct: http to dubbo with direct generic call
dubbogo/simple/body: http to dubbo with api_config.yaml
dubbogo/simple/resolve: http to dubbo with auto resolve protocol
grpc: grpc proxy
http/grpc: http to grpc transform
http/simple: http proxy
springcloud: http proxy with spring cloud registry
xds: pixiu with xds
cd dubbogo/simple
we can use start.sh to run samples quickly. for more info, execute command as below for more help
./start.sh [action] [project] ./start.sh help
we run body samples below step
prepare command will prepare dubbo-server and pixiu config file and start docker container needed
./start.sh prepare body
if prepare config file manually, notice:
./start.sh startServer body
./start.sh startPixiu body
if run pixiu manually in pixiu project, use command as below.
go run pixiu/*.go gateway start -c /[absolute-path]/dubbo-go-pixiu/samples/dubbogo/simple/body/pixiu/conf.yaml
use curl to send request
curl -X POST 'localhost:8881/api/v1/test-dubbo/user' -d '{"id":"0003","code":3,"name":"dubbogo","age":99}' --header 'Content-Type: application/json'
or just run unit test
./start.sh startTest body
./start.sh clean body