aboutsummaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
authorEric Gribkoff <ericgribkoff@google.com>2017-03-20 12:41:33 -0700
committerGitHub <noreply@github.com>2017-03-20 12:41:33 -0700
commit00bebc477a7a4f68a4468fb9fadd688549bb2f57 (patch)
tree202c58dde6e030b74920bce1bd8646e7eedf12d0 /documentation
parenta14689eff8bd0b63a2b15423c56dc455dc9c967e (diff)
downloadgrpc-grpc-java-00bebc477a7a4f68a4468fb9fadd688549bb2f57.tar.gz
documentation: update path/method for reflection
Diffstat (limited to 'documentation')
-rw-r--r--documentation/server-reflection-tutorial.md16
1 files changed, 7 insertions, 9 deletions
diff --git a/documentation/server-reflection-tutorial.md b/documentation/server-reflection-tutorial.md
index 47be7c239..4cd68b617 100644
--- a/documentation/server-reflection-tutorial.md
+++ b/documentation/server-reflection-tutorial.md
@@ -10,7 +10,7 @@ proto-based services.
## Enable Server Reflection
gRPC-Java Server Reflection is implemented by
-`io.grpc.protobuf.service.ProtoReflectionService` in the `grpc-services`
+`io.grpc.protobuf.services.ProtoReflectionService` in the `grpc-services`
package. To enable server reflection, you need to add the
`ProtoReflectionService` to your gRPC server.
@@ -27,25 +27,23 @@ need to make the following changes:
compile "io.grpc:grpc-protobuf:${grpcVersion}"
+ compile "io.grpc:grpc-services:${grpcVersion}"
compile "io.grpc:grpc-stub:${grpcVersion}"
-
+
testCompile "junit:junit:4.11"
-diff --git a/examples/src/main/java/io/grpc/examples/helloworld/HelloWorldServer.java b/examples/src/main/java/io/grpc/examples/helloworld/HelloWorldServer.java
-index ce1158a4..788bcc62 100644
--- a/examples/src/main/java/io/grpc/examples/helloworld/HelloWorldServer.java
+++ b/examples/src/main/java/io/grpc/examples/helloworld/HelloWorldServer.java
@@ -33,6 +33,7 @@ package io.grpc.examples.helloworld;
-
+
import io.grpc.Server;
import io.grpc.ServerBuilder;
-+import io.grpc.protobuf.service.ProtoReflectionService;
++import io.grpc.protobuf.services.ProtoReflectionService;
import io.grpc.stub.StreamObserver;
-
import java.io.IOException;
-@@ -51,6 +52,7 @@ public class HelloWorldServer {
+ import java.util.logging.Logger;
+@@ -50,6 +51,7 @@ public class HelloWorldServer {
int port = 50051;
server = ServerBuilder.forPort(port)
.addService(new GreeterImpl())
-+ .addService(ProtoReflectionService.getInstance())
++ .addService(ProtoReflectionService.newInstance())
.build()
.start();
logger.info("Server started, listening on " + port);