This is an automated email from the ASF dual-hosted git repository.
alexstocks pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/dubbo-go-samples.git
from 96db0c74 feat: Enhance samples interaction with Dubbo-java #3096, add
java samples in direct (#986)
add 5a0538d9 feat: add http3 sample (#993)
No new revisions were added by this update.
Summary of changes:
README.md | 1 +
README_CN.md | 1 +
http3/README.md | 152 +++++++++++++++++++++
http3/README_CN.md | 152 +++++++++++++++++++++
http3/go-client/cmd/main.go | 92 +++++++++++++
{rpc/grpc => http3}/go-server/cmd/main.go | 20 ++-
http3/java-client/pom.xml | 116 ++++++++++++++++
http3/java-client/run.sh | 4 +
.../apache/dubbo/samples/http3/Http3ClientApp.java | 42 +++---
.../java-client/src/main/proto/greet.proto | 11 +-
.../src/main/resources/dubbo.properties | 8 ++
http3/java-server/pom.xml | 116 ++++++++++++++++
http3/java-server/run.sh | 4 +
.../apache/dubbo/samples/http3/Http3ServerApp.java | 34 ++---
.../java-server}/src/main/proto/greet.proto | 11 +-
.../src/main/resources/dubbo.properties | 10 ++
{registry/etcd => http3}/proto/greet.pb.go | 4 +-
{tls => http3}/proto/greet.proto | 2 +-
.../nacos => http3}/proto/greet.triple.go | 0
{compatibility/tls => http3}/x509/server2_cert.pem | 0
http3/x509/server2_key_pkcs8.pem | 52 +++++++
.../tls => http3}/x509/server_ca_cert.pem | 0
22 files changed, 776 insertions(+), 56 deletions(-)
create mode 100644 http3/README.md
create mode 100644 http3/README_CN.md
create mode 100644 http3/go-client/cmd/main.go
copy {rpc/grpc => http3}/go-server/cmd/main.go (71%)
create mode 100644 http3/java-client/pom.xml
create mode 100755 http3/java-client/run.sh
copy
helloworld/java-client/src/main/java/org/example/client/JavaClientApp.java =>
http3/java-client/src/main/java/org/apache/dubbo/samples/http3/Http3ClientApp.java
(52%)
copy {direct => http3}/java-client/src/main/proto/greet.proto (93%)
create mode 100644 http3/java-client/src/main/resources/dubbo.properties
create mode 100644 http3/java-server/pom.xml
create mode 100755 http3/java-server/run.sh
copy
helloworld/java-server/src/main/java/org/example/server/JavaServerApp.java =>
http3/java-server/src/main/java/org/apache/dubbo/samples/http3/Http3ServerApp.java
(66%)
copy {direct/java-client => http3/java-server}/src/main/proto/greet.proto (93%)
create mode 100644 http3/java-server/src/main/resources/dubbo.properties
copy {registry/etcd => http3}/proto/greet.pb.go (98%)
copy {tls => http3}/proto/greet.proto (93%)
copy {config_center/nacos => http3}/proto/greet.triple.go (100%)
copy {compatibility/tls => http3}/x509/server2_cert.pem (100%)
create mode 100644 http3/x509/server2_key_pkcs8.pem
copy {compatibility/tls => http3}/x509/server_ca_cert.pem (100%)