diff --git a/configs/config.json b/configs/config.json index 0f2ba607e2..8fa353a654 100644 --- a/configs/config.json +++ b/configs/config.json @@ -22,7 +22,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/configs/config_apollo.json b/configs/config_apollo.json index cc9b358877..89e03a61f2 100644 --- a/configs/config_apollo.json +++ b/configs/config_apollo.json @@ -29,7 +29,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/configs/config_consul.json b/configs/config_consul.json index 673fc04514..3d62f7f794 100644 --- a/configs/config_consul.json +++ b/configs/config_consul.json @@ -22,7 +22,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/configs/config_file.json b/configs/config_file.json index 8cf2cb13eb..6f1cbb9e2e 100644 --- a/configs/config_file.json +++ b/configs/config_file.json @@ -17,7 +17,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/configs/config_file_qiniu_oss.json b/configs/config_file_qiniu_oss.json index 4e1d7ea38e..0cd2439cdc 100644 --- a/configs/config_file_qiniu_oss.json +++ b/configs/config_file_qiniu_oss.json @@ -17,7 +17,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/configs/config_file_tencentcloud_oss.json b/configs/config_file_tencentcloud_oss.json index c57c8dafae..c825255697 100644 --- a/configs/config_file_tencentcloud_oss.json +++ b/configs/config_file_tencentcloud_oss.json @@ -17,7 +17,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/configs/config_mongo.json b/configs/config_mongo.json index 2cc0e621bd..366f749bdf 100644 --- a/configs/config_mongo.json +++ b/configs/config_mongo.json @@ -22,7 +22,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/configs/config_redis.json b/configs/config_redis.json index c4db395101..7dc6736920 100644 --- a/configs/config_redis.json +++ b/configs/config_redis.json @@ -22,7 +22,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/configs/config_standalone.json b/configs/config_standalone.json index 5e83dd51d6..2ec7ca4a66 100644 --- a/configs/config_standalone.json +++ b/configs/config_standalone.json @@ -22,7 +22,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/configs/config_trace_jaeger.json b/configs/config_trace_jaeger.json index a79492890f..5ee7b2471d 100644 --- a/configs/config_trace_jaeger.json +++ b/configs/config_trace_jaeger.json @@ -17,7 +17,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/configs/config_trace_skywalking.json b/configs/config_trace_skywalking.json index e72c875bed..10b4873bab 100644 --- a/configs/config_trace_skywalking.json +++ b/configs/config_trace_skywalking.json @@ -17,7 +17,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/configs/config_trace_zipkin.json b/configs/config_trace_zipkin.json index 46362df280..bbb2a467de 100644 --- a/configs/config_trace_zipkin.json +++ b/configs/config_trace_zipkin.json @@ -17,7 +17,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/configs/config_zookeeper.json b/configs/config_zookeeper.json index 2829a8b6a9..3a3c2e7eed 100644 --- a/configs/config_zookeeper.json +++ b/configs/config_zookeeper.json @@ -22,7 +22,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/configs/runtime_config.json b/configs/runtime_config.json index 2d72c76289..bc47750e2b 100644 --- a/configs/runtime_config.json +++ b/configs/runtime_config.json @@ -17,7 +17,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/demo/flowcontrol/client.go b/demo/flowcontrol/client.go index 870abc07ca..3cf7253fe2 100644 --- a/demo/flowcontrol/client.go +++ b/demo/flowcontrol/client.go @@ -36,7 +36,7 @@ func main() { for i := 0; i < 10; i++ { r, err := c.SayHello(context.Background(), &runtimev1pb.SayHelloRequest{ - ServiceName: "quick_start_demo", + ServiceName: "helloworld", }) if err != nil { fmt.Println("get an error: ", err) diff --git a/demo/lifecycle/common/client.go b/demo/lifecycle/common/client.go index 004e5de1a3..05b107923c 100644 --- a/demo/lifecycle/common/client.go +++ b/demo/lifecycle/common/client.go @@ -17,7 +17,7 @@ func main() { // 1. invoke sayHello API client := runtimev1pb.NewRuntimeClient(conn) hello, err := client.SayHello(context.Background(), &runtimev1pb.SayHelloRequest{ - ServiceName: "quick_start_demo", + ServiceName: "helloworld", Name: "eva", }) if err != nil { @@ -36,7 +36,7 @@ func main() { metaData["hello"] = "goodbye" req := &runtimev1pb.DynamicConfiguration{ComponentConfig: &runtimev1pb.ComponentConfig{ Kind: "hellos", - Name: "quick_start_demo", + Name: "helloworld", Metadata: metaData, }} _, err = c.ApplyConfiguration(context.Background(), req) @@ -46,7 +46,7 @@ func main() { // 3. invoke sayHello API again client = runtimev1pb.NewRuntimeClient(conn) hello, err = client.SayHello(context.Background(), &runtimev1pb.SayHelloRequest{ - ServiceName: "quick_start_demo", + ServiceName: "helloworld", Name: "eva", }) if err != nil { diff --git a/deploy/k8s/sidecar/default_quickstart_counter.yaml b/deploy/k8s/sidecar/default_quickstart_counter.yaml index 45dea2bcee..4e57acb155 100644 --- a/deploy/k8s/sidecar/default_quickstart_counter.yaml +++ b/deploy/k8s/sidecar/default_quickstart_counter.yaml @@ -28,7 +28,7 @@ data: "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/deploy/k8s/standalone/default_configmap.yaml b/deploy/k8s/standalone/default_configmap.yaml index 20fb1587fc..a0a6c4b108 100644 --- a/deploy/k8s/standalone/default_configmap.yaml +++ b/deploy/k8s/standalone/default_configmap.yaml @@ -28,7 +28,7 @@ data: "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/deploy/k8s/standalone/default_quickstart.yaml b/deploy/k8s/standalone/default_quickstart.yaml index 58cda42893..4179b6e6a3 100644 --- a/deploy/k8s/standalone/default_quickstart.yaml +++ b/deploy/k8s/standalone/default_quickstart.yaml @@ -28,7 +28,7 @@ data: "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/docker/layotto-etcd/etcd_config.json b/docker/layotto-etcd/etcd_config.json index 864913680d..1a23beba51 100644 --- a/docker/layotto-etcd/etcd_config.json +++ b/docker/layotto-etcd/etcd_config.json @@ -17,7 +17,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/docker/layotto-minio/config_minio.json b/docker/layotto-minio/config_minio.json index 33dae046b2..8042e6e137 100644 --- a/docker/layotto-minio/config_minio.json +++ b/docker/layotto-minio/config_minio.json @@ -17,7 +17,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/docker/layotto-redis/config_redis.json b/docker/layotto-redis/config_redis.json index 6e82c5a93a..894b5dba54 100644 --- a/docker/layotto-redis/config_redis.json +++ b/docker/layotto-redis/config_redis.json @@ -22,7 +22,7 @@ "server_name": "runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/docs/en/start/email/start.md b/docs/en/start/email/start.md index 3048223646..496354c810 100644 --- a/docs/en/start/email/start.md +++ b/docs/en/start/email/start.md @@ -71,7 +71,7 @@ cd java-sdk Build the demo: -```shell @if.not.exist examples-email/target/examples-email-1.1.0-jar-with-dependencies.jar +```shell @if.not.exist examples-email/target/examples-email-jar-with-dependencies.jar # build example jar mvn -f examples-email/pom.xml clean package ``` @@ -79,7 +79,7 @@ mvn -f examples-email/pom.xml clean package Run it: ```shell -java -jar examples-email/target/examples-email-1.1.0-jar-with-dependencies.jar +java -jar examples-email/target/examples-email-jar-with-dependencies.jar ``` If the following information is printed, the demo is successful: diff --git a/docs/en/start/lifecycle/start.md b/docs/en/start/lifecycle/start.md index 46329565b0..dbedb4a97f 100644 --- a/docs/en/start/lifecycle/start.md +++ b/docs/en/start/lifecycle/start.md @@ -76,7 +76,7 @@ TODO [comment]: <> (Build the demo:) -[comment]: <> (```shell @if.not.exist examples-lifecycle/target/examples-lifecycle-1.1.0-jar-with-dependencies.jar) +[comment]: <> (```shell @if.not.exist examples-lifecycle/target/examples-lifecycle-jar-with-dependencies.jar) [comment]: <> (# build example jar) @@ -88,7 +88,7 @@ TODO [comment]: <> (```shell) -[comment]: <> (java -jar examples-lifecycle/target/examples-lifecycle-1.1.0-jar-with-dependencies.jar) +[comment]: <> (java -jar examples-lifecycle/target/examples-lifecycle-jar-with-dependencies.jar) [comment]: <> (```) diff --git a/docs/en/start/oss/start.md b/docs/en/start/oss/start.md index ee74618289..86bfca9920 100644 --- a/docs/en/start/oss/start.md +++ b/docs/en/start/oss/start.md @@ -100,7 +100,7 @@ cd java-sdk Build the demo: -```shell @if.not.exist examples-oss/target/examples-oss-1.1.0-jar-with-dependencies.jar +```shell @if.not.exist examples-oss/target/examples-oss-jar-with-dependencies.jar # build example jar mvn -f examples-oss/pom.xml clean package ``` @@ -108,7 +108,7 @@ mvn -f examples-oss/pom.xml clean package Run it: ```shell -java -jar examples-oss/target/examples-oss-1.1.0-jar-with-dependencies.jar +java -jar examples-oss/target/examples-oss-jar-with-dependencies.jar ``` If the following information is printed, the demo is successful: diff --git a/docs/en/start/phone/start.md b/docs/en/start/phone/start.md index 686d7a9334..9bf0967280 100644 --- a/docs/en/start/phone/start.md +++ b/docs/en/start/phone/start.md @@ -71,7 +71,7 @@ cd java-sdk Build the demo: -```shell @if.not.exist examples-phone/target/examples-phone-1.1.0-jar-with-dependencies.jar +```shell @if.not.exist examples-phone/target/examples-phone-jar-with-dependencies.jar # build example jar mvn -f examples-phone/pom.xml clean package ``` @@ -79,7 +79,7 @@ mvn -f examples-phone/pom.xml clean package Run it: ```shell -java -jar examples-phone/target/examples-phone-1.1.0-jar-with-dependencies.jar +java -jar examples-phone/target/examples-phone-jar-with-dependencies.jar ``` If the following information is printed, the demo is successful: diff --git a/docs/en/start/pubsub/start.md b/docs/en/start/pubsub/start.md index 7a49f07266..1670fb4f08 100644 --- a/docs/en/start/pubsub/start.md +++ b/docs/en/start/pubsub/start.md @@ -47,7 +47,7 @@ Build and run it: # build example jar mvn -f examples-pubsub-subscriber/pom.xml clean package # run the example -java -jar examples-pubsub-subscriber/target/examples-pubsub-subscriber-1.1.0-jar-with-dependencies.jar +java -jar examples-pubsub-subscriber/target/examples-pubsub-subscriber-jar-with-dependencies.jar ``` @@ -145,7 +145,7 @@ cd java-sdk Build: -```shell @if.not.exist examples-pubsub-publisher/target/examples-pubsub-publisher-1.1.0-jar-with-dependencies.jar +```shell @if.not.exist examples-pubsub-publisher/target/examples-pubsub-publisher-jar-with-dependencies.jar # build example jar mvn -f examples-pubsub-publisher/pom.xml clean package ``` @@ -154,7 +154,7 @@ Run it: ```shell # run the example -java -jar examples-pubsub-publisher/target/examples-pubsub-publisher-1.1.0-jar-with-dependencies.jar +java -jar examples-pubsub-publisher/target/examples-pubsub-publisher-jar-with-dependencies.jar ``` diff --git a/docs/en/start/sequencer/start.md b/docs/en/start/sequencer/start.md index cf07238781..6870230653 100644 --- a/docs/en/start/sequencer/start.md +++ b/docs/en/start/sequencer/start.md @@ -104,7 +104,7 @@ cd java-sdk Build the demo: -```shell @if.not.exist examples-sequencer/target/examples-sequencer-1.1.0-jar-with-dependencies.jar +```shell @if.not.exist examples-sequencer/target/examples-sequencer-jar-with-dependencies.jar # build example jar mvn -f examples-sequencer/pom.xml clean package ``` @@ -112,7 +112,7 @@ mvn -f examples-sequencer/pom.xml clean package Run it: ```shell -java -jar examples-sequencer/target/examples-sequencer-1.1.0-jar-with-dependencies.jar +java -jar examples-sequencer/target/examples-sequencer-jar-with-dependencies.jar ``` If the following information is printed, the demo is successful: diff --git a/docs/en/start/state/start.md b/docs/en/start/state/start.md index ed289e3bcb..a54113e73d 100644 --- a/docs/en/start/state/start.md +++ b/docs/en/start/state/start.md @@ -127,7 +127,7 @@ cd java-sdk Build the demo: -```shell @if.not.exist examples-state/target/examples-state-1.1.0-jar-with-dependencies.jar +```shell @if.not.exist examples-state/target/examples-state-jar-with-dependencies.jar # build example jar mvn -f examples-state/pom.xml clean package ``` @@ -135,7 +135,7 @@ mvn -f examples-state/pom.xml clean package Run it: ``` -java -jar examples-state/target/examples-state-1.1.0-jar-with-dependencies.jar +java -jar examples-state/target/examples-state-jar-with-dependencies.jar ``` The demo will print the following message: diff --git a/docs/template/quickstart.tmpl b/docs/template/quickstart.tmpl index d4073f4977..8ccb7c009b 100644 --- a/docs/template/quickstart.tmpl +++ b/docs/template/quickstart.tmpl @@ -71,7 +71,7 @@ cd java-sdk Build the demo: -```shell @if.not.exist examples-{{$file_name}}/target/examples-{{$file_name}}-1.1.0-jar-with-dependencies.jar +```shell @if.not.exist examples-{{$file_name}}/target/examples-{{$file_name}}-jar-with-dependencies.jar # build example jar mvn -f examples-{{$file_name}}/pom.xml clean package ``` @@ -79,7 +79,7 @@ mvn -f examples-{{$file_name}}/pom.xml clean package Run it: ```shell -java -jar examples-{{$file_name}}/target/examples-{{$file_name}}-1.1.0-jar-with-dependencies.jar +java -jar examples-{{$file_name}}/target/examples-{{$file_name}}-jar-with-dependencies.jar ``` If the following information is printed, the demo is successful: diff --git a/docs/template/quickstart_zh.tmpl b/docs/template/quickstart_zh.tmpl index d7d275aade..0aa527850f 100644 --- a/docs/template/quickstart_zh.tmpl +++ b/docs/template/quickstart_zh.tmpl @@ -71,7 +71,7 @@ cd java-sdk 构建 examples: -```shell @if.not.exist examples-{{$file_name}}/target/examples-{{$file_name}}-1.1.0-jar-with-dependencies.jar +```shell @if.not.exist examples-{{$file_name}}/target/examples-{{$file_name}}-jar-with-dependencies.jar # build example jar mvn -f examples-{{$file_name}}/pom.xml clean package ``` @@ -79,7 +79,7 @@ mvn -f examples-{{$file_name}}/pom.xml clean package 运行: ```shell -java -jar examples-{{$file_name}}/target/examples-{{$file_name}}-1.1.0-jar-with-dependencies.jar +java -jar examples-{{$file_name}}/target/examples-{{$file_name}}-jar-with-dependencies.jar ``` 打印出以下信息说明运行成功: diff --git a/docs/zh/design/actuator/grpc-design-doc.md b/docs/zh/design/actuator/grpc-design-doc.md index 0071a48987..55b76a3fd8 100644 --- a/docs/zh/design/actuator/grpc-design-doc.md +++ b/docs/zh/design/actuator/grpc-design-doc.md @@ -72,7 +72,7 @@ func MyFunc(_ json.RawMessage) *grpc.Server { "server_name":"runtime", "grpc_config": { "hellos": { - "quick_start_demo": { + "helloworld": { "type": "helloworld", "hello": "greeting" } diff --git a/docs/zh/start/email/start.md b/docs/zh/start/email/start.md index f30ae55f5a..2716924aad 100644 --- a/docs/zh/start/email/start.md +++ b/docs/zh/start/email/start.md @@ -71,7 +71,7 @@ cd java-sdk 构建 examples: -```shell @if.not.exist examples-email/target/examples-email-1.1.0-jar-with-dependencies.jar +```shell @if.not.exist examples-email/target/examples-email-jar-with-dependencies.jar # build example jar mvn -f examples-email/pom.xml clean package ``` @@ -79,7 +79,7 @@ mvn -f examples-email/pom.xml clean package 运行: ```shell -java -jar examples-email/target/examples-email-1.1.0-jar-with-dependencies.jar +java -jar examples-email/target/examples-email-jar-with-dependencies.jar ``` 打印出以下信息说明运行成功: diff --git a/docs/zh/start/lifecycle/start.md b/docs/zh/start/lifecycle/start.md index e73e0cee01..8721f1ac4f 100644 --- a/docs/zh/start/lifecycle/start.md +++ b/docs/zh/start/lifecycle/start.md @@ -76,7 +76,7 @@ TODO [comment]: <> (构建 examples:) -[comment]: <> (```shell @if.not.exist examples-lifecycle/target/examples-lifecycle-1.1.0-jar-with-dependencies.jar) +[comment]: <> (```shell @if.not.exist examples-lifecycle/target/examples-lifecycle-jar-with-dependencies.jar) [comment]: <> (# build example jar) @@ -88,7 +88,7 @@ TODO [comment]: <> (```shell) -[comment]: <> (java -jar examples-lifecycle/target/examples-lifecycle-1.1.0-jar-with-dependencies.jar) +[comment]: <> (java -jar examples-lifecycle/target/examples-lifecycle-jar-with-dependencies.jar) [comment]: <> (```) diff --git a/docs/zh/start/phone/start.md b/docs/zh/start/phone/start.md index 72af36c21d..d73b03c8e5 100644 --- a/docs/zh/start/phone/start.md +++ b/docs/zh/start/phone/start.md @@ -71,7 +71,7 @@ cd java-sdk 构建 examples: -```shell @if.not.exist examples-phone/target/examples-phone-1.1.0-jar-with-dependencies.jar +```shell @if.not.exist examples-phone/target/examples-phone-jar-with-dependencies.jar # build example jar mvn -f examples-phone/pom.xml clean package ``` @@ -79,7 +79,7 @@ mvn -f examples-phone/pom.xml clean package 运行: ```shell -java -jar examples-phone/target/examples-phone-1.1.0-jar-with-dependencies.jar +java -jar examples-phone/target/examples-phone-jar-with-dependencies.jar ``` 打印出以下信息说明运行成功: diff --git a/docs/zh/start/pubsub/start.md b/docs/zh/start/pubsub/start.md index ba083ac491..0df36731da 100644 --- a/docs/zh/start/pubsub/start.md +++ b/docs/zh/start/pubsub/start.md @@ -50,7 +50,7 @@ cd java-sdk # build example jar mvn -f examples-pubsub-subscriber/pom.xml clean package # run the example -java -jar examples-pubsub-subscriber/target/examples-pubsub-subscriber-1.1.0-jar-with-dependencies.jar +java -jar examples-pubsub-subscriber/target/examples-pubsub-subscriber-jar-with-dependencies.jar ``` @@ -150,7 +150,7 @@ cd java-sdk 构建: -```shell @if.not.exist examples-pubsub-publisher/target/examples-pubsub-publisher-1.1.0-jar-with-dependencies.jar +```shell @if.not.exist examples-pubsub-publisher/target/examples-pubsub-publisher-jar-with-dependencies.jar # build example jar mvn -f examples-pubsub-publisher/pom.xml clean package ``` @@ -159,7 +159,7 @@ mvn -f examples-pubsub-publisher/pom.xml clean package ```shell # run the example -java -jar examples-pubsub-publisher/target/examples-pubsub-publisher-1.1.0-jar-with-dependencies.jar +java -jar examples-pubsub-publisher/target/examples-pubsub-publisher-jar-with-dependencies.jar ``` diff --git a/docs/zh/start/sequencer/start.md b/docs/zh/start/sequencer/start.md index 1e722cc9b9..e99e564ee3 100644 --- a/docs/zh/start/sequencer/start.md +++ b/docs/zh/start/sequencer/start.md @@ -110,7 +110,7 @@ cd java-sdk 构建: -```shell @if.not.exist examples-sequencer/target/examples-sequencer-1.1.0-jar-with-dependencies.jar +```shell @if.not.exist examples-sequencer/target/examples-sequencer-jar-with-dependencies.jar # build example jar mvn -f examples-sequencer/pom.xml clean package ``` @@ -118,7 +118,7 @@ mvn -f examples-sequencer/pom.xml clean package 运行: ```shell -java -jar examples-sequencer/target/examples-sequencer-1.1.0-jar-with-dependencies.jar +java -jar examples-sequencer/target/examples-sequencer-jar-with-dependencies.jar ``` 打印出以下信息说明运行成功: diff --git a/docs/zh/start/state/start.md b/docs/zh/start/state/start.md index d7968e84ec..9eb075c63f 100644 --- a/docs/zh/start/state/start.md +++ b/docs/zh/start/state/start.md @@ -129,7 +129,7 @@ cd java-sdk 构建: -```shell @if.not.exist examples-state/target/examples-state-1.1.0-jar-with-dependencies.jar +```shell @if.not.exist examples-state/target/examples-state-jar-with-dependencies.jar # build example jar mvn -f examples-state/pom.xml clean package ``` @@ -137,7 +137,7 @@ mvn -f examples-state/pom.xml clean package 运行: ``` -java -jar examples-state/target/examples-state-1.1.0-jar-with-dependencies.jar +java -jar examples-state/target/examples-state-jar-with-dependencies.jar ``` 打印出以下信息说明运行成功: diff --git a/sdk/go-sdk/test/runtime/redis_integrate_test.go b/sdk/go-sdk/test/runtime/redis_integrate_test.go index 0dd1c22c64..894efcf3cf 100644 --- a/sdk/go-sdk/test/runtime/redis_integrate_test.go +++ b/sdk/go-sdk/test/runtime/redis_integrate_test.go @@ -40,7 +40,7 @@ func TestHelloApi(t *testing.T) { ctx := context.Background() helloReq := &client.SayHelloRequest{ - ServiceName: "quick_start_demo", + ServiceName: "helloworld", } helloResp, err := cli.SayHello(ctx, helloReq) assert.Nil(t, err)