对于我的团队,我希望配置maven/eclipse build从*.proto
文件自动生成Java代码(在使用gRPC的项目中)。目前需要运行mvn generate-source
或mvn protobuf:compile
(在usage page插件中)。或者添加Run配置以调用maven目标compile
。
每当刷新Eclipse Maven项目(Alt + F5)或重新启动IDE时,项目将重新构建,但不包含应该显示在target/generated
中的内容,因此项目将变为红色。因此,需要生成并刷新项目(F5)。UPDATE Eclipse需要在.clathpath
文件中配置源文件夹。
据我所知,应该是m2e连接器,但我只能找到一个https://github.com/masterzen/m2e-protoc-connector为最古老的谷歌s plugin com.google.protobuf.tools:maven-protoc-plugin
,这是甚至没有提到目前在https://github.com/grpc/grpc-java
我们使用完全参考/推荐的
<groupId>org.xolstice.maven.plugins</groupId>
<artifactId>protobuf-maven-plugin</artifactId>
即:
<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.1.0:exe:${os.detected.classifier}</protocArtifact>
<pluginId>grpc-java</pluginId>
<pluginArtifact>io.grpc:protoc-gen-grpc-java:1.0.1:exe:${os.detected.classifier}</pluginArtifact>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>compile-custom</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
相关:
- Linking to generated Java protobuf code in Eclipse
- 看了看这个,但作者正在使用其他旧的,现在不支持插件:Eclipse build loop caused by protobuf generated code (related to Maven Project Builder)
P.P. S该插件https://github.com/igor-petruk/protobuf-maven-plugin但是有延续https://github.com/os72/protoc-jar-maven-plugin
3条答案
按热度按时间wixjitnu1#
我的团队没有使用
org.xolstice.maven.plugins:protobuf-maven-plugin
,而是使用**com.github.os72:protoc-jar-maven-plugin
**来生成消息类。我相信它们是相同的,因为在引擎盖下,它们似乎都在使用Google的工具。我没有在这个插件中使用任何m2e连接器(编辑:
protoc-jar-maven-plugin
的m2e连接器是捆绑在一起的,所以不需要额外的安装,这就是为什么看起来我没有使用一个,但 * 技术上 * 我使用了,但这并不重要)不幸的是,.proto
文件中的更改不会“自动”传播到生成的.java
文件中,您需要手动运行Maven或触发在Eclipse中构建的项目(下面的说明),但幸运的是,target/generated-sources
文件没有消失或清空或任何像您描述的奇怪的事情。如果你想从
.proto
类重建.java
文件,而不使用命令行中的mvn clean compile
,你可以清理Eclipse项目:项目→清理... →选择你的项目→选择构建选项(只有当你取消选中项目菜单中的“自动构建”时才会显示)。我能够在最新的Eclipse neon 中做到这一点(它可能在以后的版本中也能工作,但我不确定)。
下面是我正在使用的POM。我不认为它需要任何特殊的解释,我的解决方案是简单地使用一个不同的插件比你正在使用。(如果需要一些解释,我会很乐意提供它虽然。)
fykwrbwg2#
适用于
protobuf-maven-plugin
感谢谢尔盖-伊万诺夫在https://github.com/xolstice/protobuf-maven-plugin/issues/16中的回答,这给出了链接https://github.com/trustin/os-maven-plugin#issues-with-eclipse-m2e-or-other-ides:
需要下载os-maven-plugin-x.x.x.Final.jar(版本与www.example.com中的版本相同pomx.ml)并将其放入
<ECLIPSE_HOME>/plugins
目录。之后Eclipse将在项目清理时生成源代码,包括在Maven -更新项目...(Alt+F5)之后,但不在项目-〉构建(或使用默认的自动构建)之后。
是的,这不合逻辑:
Project - Clean将生成并编译Java源代码
但是
项目-生成不会。
P.S.升高Bug 507412
kse8i1jr3#
eclipse和vscode都可以在修改时自动编译proto。
See: https://github.com/trustin/os-maven-plugin#issues-with-eclipse-m2e-or-other-ides