java 使用grpc步骤
Posted 探索互联网
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 使用grpc步骤相关的知识,希望对你有一定的参考价值。
1、配置grpc maven依赖
2、设置idea 插件
<build> <extensions> <extension> <groupId>kr.motd.maven</groupId> <artifactId>os-maven-plugin</artifactId> <version>1.4.1.Final</version> </extension> </extensions> <plugins> <plugin> <groupId>org.xolstice.maven.plugins</groupId> <artifactId>protobuf-maven-plugin</artifactId> <version>0.5.0</version> <configuration> <protocArtifact>com.google.protobuf:protoc:3.0.2:exe:${os.detected.classifier}</protocArtifact> <pluginId>grpc-java</pluginId> <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.2.0:exe:${os.detected.classifier}</pluginArtifact> </configuration> <executions> <execution> <goals> <goal>compile</goal> <goal>compile-custom</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
相关链接
https://github.com/grpc/grpc-java
https://github.com/google/protobuf/tree/master/examples
以上是关于java 使用grpc步骤的主要内容,如果未能解决你的问题,请参考以下文章
如何在 gRPC 中为 Java 手动生成客户端和服务器代码?
如何为 gRPC 生成的 Java 代码实现 com.google.protobuf.BlockingRpcChannel?