$ go get dubbo.apache.org/dubbo-go/v3@v3.2.0-rc2 go: module github.com/golang/protobuf is deprecated: Use the "google.golang.org/protobuf" module instead. go: upgraded dubbo.apache.org/dubbo-go/v3 v3.2.0-rc1.0.20240808044912-f61d7c94bfd2 => v3.2.0-rc2
resp, err := svc.SayHello(ctx, &greet.HelloRequest{Name: "hello world"}) if err != nil { logger.Error(err) return// Now, we explicitly handle the error by logging it and then returning from the function. } logger.Infof("Greet response: %s", resp.Message) }
## Server 端
java_interop/protobuf-triple/java/java-server/pom.xml:
2月 12, 2025 6:26:30 下午 org.apache.dubbo.common.logger.jdk.JdkLogger info 信息: [DUBBO] The connection [id: 0x156ed855, L:/127.0.0.1:50052 - R:/127.0.0.1:56961] of 127.0.0.1:56961 -> 127.0.0.1:50052 is established., dubbo version: 3.3.0, current host: 10.60.200.103 ContextService serverAttachments:{"retries":"","remote.application1":"appname","remote.application2":"appname"} 2月 12, 2025 6:26:30 下午 org.apache.dubbo.common.logger.jdk.JdkLogger info 信息: [DUBBO] The connection [id: 0x156ed855, L:/127.0.0.1:50052 ! R:/127.0.0.1:56961] of 127.0.0.1:56961 -> 127.0.0.1:50052 is disconnected., dubbo version: 3.3.0, current host: 10.60.200.103 2月 12, 2025 6:26:30 下午 org.apache.dubbo.common.logger.jdk.JdkLogger warn 警告: [DUBBO] All clients has disconnected from /127.0.0.1:50052. You can graceful shutdown now., dubbo version: 3.3.0, current host: 10.60.200.103, error code: 99-0. This may be caused by unknown error in remoting module, go to https://dubbo.apache.org/faq/99/0 to find instructions. 2月 12, 2025 6:26:30 下午 org.apache.dubbo.common.logger.jdk.JdkLogger info 信息: [DUBBO] The connection [id: 0x156ed855, L:/127.0.0.1:50052 ! R:/127.0.0.1:56961] of 127.0.0.1:56961 -> 127.0.0.1:50052 is disconnected., dubbo version: 3.3.0, current host: 10.60.200.103
客户端:
1 2 3
2025-02-12 18:26:29 INFO logger/logging.go:42 URL specified explicitly 127.0.0.1:50052 2025-02-12 18:26:30 INFO logger/logging.go:42 [TRIPLE Protocol] Refer service: tri://127.0.0.1:50052/org.apache.dubbo.sample.Greeter?app.version=&application=dubbo.io&async=false&bean.name=org.apache.dubbo.sample.Greeter&cluster=failover&config.tracing=&environment=&generic=&group=&interface=org.apache.dubbo.sample.Greeter&loadbalance=&metadata-type=local&module=sample&name=dubbo.io&organization=dubbo-go&owner=dubbo-go&peer=true&provided-by=&reference.filter=cshutdown®istry.role=0&release=dubbo-golang-3.2.0&remote.timestamp=&retries=&serialization=protobuf&side=consumer&sticky=false×tamp=1739355989&version= 2025-02-12 18:26:30 INFO logger/logging.go:42 Greet response: hello world
/** * Put a KV pairs into attachments. * * @param attachments the map to which the attachment will be added * @param key the key of the header * @param value the value of the header */ privatestaticvoidputAttachment(Map<String, Object> attachments, String key, Object value) { if (TripleHeaderEnum.containsExcludeAttachments(key)) { return; } attachments.put(key, value); }