在那里,Java和gRPC大师们度过了美好的一天。
我一直关注这个https://github.com/jpdna/gRPC-maven-helloworld,因为我正在使用Java学习gRPC。
我能够使用mvn clean包编译它。 但是当我在Eclipse中加载项目时,文件:
org.jpdna.grpchello.HelloWorldServer
正在寻找班级" GreeterGrpc
"。
我尝试在终端中执行此操作:
$ protoc --java_out=/gRPC-maven-helloworld/src/main/java hello_world.proto
它生成了以下类:
- HelloRequest.java
- HelloRequestOrBuilder.java
- HelloResponse.java
- HelloResponseOrBuilder.java
- HelloWorldProto.java
但没有GreeterGrpc.java被定义为此项目中的服务。 如果你不介意我问,我想知道如何创建或生成这个GreeterGrpc.java类?
非常感谢你们!
答案 0 :(得分:2)
在编译protoc
时,您需要protoc-gen-grpc-java
插件GreeterGrpc.class
来生成hello_world.proto
。
或者您可以使用maven插件来实现相同的功能。 我的maven配置:
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-all</artifactId>
<version>1.0.3</version>
</dependency>
<extension>
<groupId>kr.motd.maven</groupId>
<artifactId>os-maven-plugin</artifactId>
<version>1.5.0.Final</version>
</extension>
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<executions>
<execution>
<id>uncompress</id>
<phase>install</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${basedir}/bin/upgrade.sh ${environment}</executable>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
<version>0.5.0</version>
<configuration>
<protocArtifact>com.google.protobuf:protoc:3.1.0:exe:${os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.0.3:exe:${os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>compile-custom</goal>
</goals>
</execution>
</executions>
</plugin>
答案 1 :(得分:0)
我找到了我的问题的答案......解决方案就是右键单击Eclipse上的项目,然后选择Run As - &gt; Maven生成源。在目标文件夹中生成源代码及其文件夹后。右键单击那些生成的文件夹(包含源代码),然后单击Build Path - &gt;用作源文件夹。错误将消失,因为它将能够解决丢失的类。
谢谢,祝你有个美好的一天=)!