码迷,mamicode.com
首页 > 编程语言 > 详细

java 使用grpc步骤

时间:2017-04-27 00:38:07      阅读:369      评论:0      收藏:0      [点我收藏+]

标签:tps   ted   amp   oca   compile   mpi   ati   5.0   com   

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步骤

标签:tps   ted   amp   oca   compile   mpi   ati   5.0   com   

原文地址:http://www.cnblogs.com/freedommovie/p/6771662.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!