Skip to content
Snippets Groups Projects
Commit 5d3cb77c authored by fangyincheng's avatar fangyincheng
Browse files

Mod: examples readme

parent e1e10103
No related branches found
No related tags found
No related merge requests found
# examples # examples
Examples of go-for-apache-dubbo Examples of dubbo-go
## dubbo ## overview
#### Build by these command * helloworld
java server A simplest example. It contain 'go-client', 'go-server', 'java-server' of dubbo protocol.
```bash
cd dubbo/java-server
sh build.sh
```
java client * general
```bash
cd dubbo/java-client
sh build.sh
```
go server A general example. It had validated zookeeper registry and different parameter lists of service.
And it has a comprehensive testing with dubbo/jsonrpc protocol. You can refer to it to create your first complete dubbo-go project.
* sh ./assembly/\[os]/\[environment].sh * generic
```bash
cd dubbo/go-server
# $ARCH = [linux, mac, windows] and $ENV = [dev, release, test]
sh ./assembly/$ARCH/$ENV.sh
```
go client A generic reference example. It show how to use generic reference of dubbo-go.
```bash
cd dubbo/go-client * configcenter
# $ARCH = [linux, mac, windows] and $ENV = [dev, release, test]
sh ./assembly/$ARCH/$ENV.sh Some examples of different config center. There is only one -- zookeeper at present.
```
#### Run by these command: ## How to build and run
> Take `helloworld` as an example
java server java server
```bash ```bash
cd dubbo/java-server/target cd helloworld/dubbo/java-server
sh build.sh
cd ./target
tar -zxvf user-info-server-0.2.0-assembly.tar.gz tar -zxvf user-info-server-0.2.0-assembly.tar.gz
cd ./user-info-server-0.2.0 cd ./user-info-server-0.2.0
sh ./bin/server.sh start sh ./bin/server.sh start
``` ```
java client java client
```bash ```bash
cd dubbo/java-client/target cd helloworld/dubbo/java-client
sh build.sh
cd ./target
tar -zxvf user-info-client-0.2.0-assembly.tar.gz tar -zxvf user-info-client-0.2.0-assembly.tar.gz
cd ./user-info-client-0.2.0 cd ./user-info-client-0.2.0
sh ./bin/server.sh start sh ./bin/server.sh start
``` ```
go server go server
* $ARCH = [linux, mac, windows] and $ENV = [dev, release, test]
```bash ```bash
cd dubbo/go-server/target/linux/user_info_server-0.3.1-20190517-0930-release cd helloworld/dubbo/go-server
#conf suffix appoint config file, sh ./assembly/$ARCH/$ENV.sh
#such as server_zookeeper.yml when "sh ./bin/load.sh start is zookeeper",
#default server.yml cd ./target/linux/user_info_server-0.3.1-20190517-0930-release
sh ./bin/load.sh start [conf suffix] # $SUFFIX is a suffix of config file,
# such as server_zookeeper.yml when $SUFFIX is "zookeeper",
# if $SUFFIX = "", default server.yml
sh ./bin/load.sh start $SUFFIX
``` ```
go client go client
* $ARCH = [linux, mac, windows] and $ENV = [dev, release, test]
```bash ```bash
cd dubbo/go-client/target/linux/user_info_client-0.3.1-20190517-0921-release cd helloworld/dubbo/go-client
sh ./assembly/$ARCH/$ENV.sh
cd ./target/linux/user_info_client-0.3.1-20190517-0921-release
# $SUFFIX is a suffix of config file, # $SUFFIX is a suffix of config file,
# such as client_zookeeper.yml when $SUFFIX = zookeeper", # such as client_zookeeper.yml when $SUFFIX = zookeeper",
# if $SUFFIX = "", config file is client.yml # if $SUFFIX = "", config file is client.yml
sh ./bin/load_user_info_client.sh start $SUFFIX sh ./bin/load_user_info_client.sh start $SUFFIX
``` ```
## jsonrpc
Similar to dubbo
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment