Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ftr: consul registry #121

Merged
merged 54 commits into from
Aug 26, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
d04c33e
consul init
Jun 21, 2019
858f7c9
update
Jun 21, 2019
26959d1
solve conflict
Jul 1, 2019
dc0e93b
update consul
Jul 2, 2019
a231f0e
add consul example
Jul 2, 2019
5e0a4a1
Merge branch 'master' into consul
Jul 3, 2019
7564165
go mod
Jul 3, 2019
0adb3a9
go fmt
Jul 3, 2019
dcde19b
fix bug: add wg.done
Jul 3, 2019
127f034
Merge branch 'master' into consul
Jul 3, 2019
461cfc3
Merge branch 'develop' into consul
Jul 3, 2019
8970b13
modify travis
Jul 3, 2019
218cc74
new go.sum
Jul 3, 2019
c37e13a
modify go mod
Jul 3, 2019
65ae799
new go.mod and go.sum
Jul 4, 2019
eeb1177
update gitignore
Jul 4, 2019
f82563f
merge develop branch
Jul 9, 2019
87e9bab
modify based rw
Jul 9, 2019
340b98b
fix bug
Jul 9, 2019
85582d5
add for
Jul 9, 2019
cbb0534
improve consul examples
Jul 12, 2019
64df877
merge develop
Jul 17, 2019
97e0e51
add consul in travis
Jul 17, 2019
01485b5
modify travis
Jul 17, 2019
c8e0403
modify travis
Jul 17, 2019
f671f55
modify travis
Jul 17, 2019
bc10a18
modify travis
Jul 17, 2019
1ca3536
modfiy travis
Jul 17, 2019
4b29e7c
modify travis
Jul 17, 2019
e4a39c9
add unit test for consul
Jul 27, 2019
588dd96
resolve conflict
Jul 27, 2019
1bb5457
fix typo
Jul 31, 2019
82fb516
recolve conflict
Aug 11, 2019
a958f13
resolve conflict
Aug 11, 2019
f616b4a
fix initialize len and cap for make
Aug 11, 2019
803c1b2
resolve conflict
Aug 14, 2019
24e7d6f
Merge branch 'develop' into consul
Aug 14, 2019
1edd0f5
Merge branch 'develop' into consul
Aug 19, 2019
bd25bbd
fix typo
Aug 19, 2019
114b0c9
Merge branch 'develop' into consul
Aug 19, 2019
38a4b0c
consul test
Aug 19, 2019
2aa483a
consul test
Aug 19, 2019
46cc00a
travis
Aug 19, 2019
11032c5
import
Aug 19, 2019
5c05d1c
fix typo
Aug 19, 2019
c52c611
Merge branch 'develop' into consul
Aug 19, 2019
dd8728e
test
Aug 19, 2019
85c89b7
revert
Aug 19, 2019
e77abb3
go mod
Aug 20, 2019
d11fff0
typo
Aug 20, 2019
8125771
modify version
Aug 22, 2019
f73ee62
examples
Aug 22, 2019
21d7b15
add unregister test
Aug 23, 2019
5dd2bd0
modify yaml
Aug 23, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
examples
  • Loading branch information
高辛格 committed Aug 22, 2019
commit f73ee62819cba68eeb7b4ce499e8a6c3a3db1b10
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Examples for consul registry. Before running examples below, make sure that cons
## go-server

```
$ cd examples/dubbo/consul/go-server
$ cd examples/consul/go-server
$ export CONF_PROVIDER_FILE_PATH="config/server.yml"
$ export APP_LOG_CONF_FILE="config/log.yml"
$ go run .
Expand All @@ -21,7 +21,7 @@ $ go run .
## go-client

```
$ cd examples/dubbo/consul/go-client
$ cd examples/consul/go-client
$ export CONF_CONSUMER_FILE_PATH="config/client.yml"
$ export APP_LOG_CONF_FILE="config/log.yml"
$ go run .
Expand All @@ -30,15 +30,15 @@ $ go run .
## java-server

```
$ cd examples/dubbo/consul/java-server
$ cd examples/consul/java-server
$ mvn clean package
$ java -jar target/java-server-1.0.0.jar
```

## java-client

```
$ cd examples/dubbo/consul/java-client
$ cd examples/consul/java-client
$ mvn clean package
$ java -jar target/java-client-1.0.0.jar
```