我见过两种生成finagle兼容节俭的工具。
thrift-0.5.0-finagle太旧了吗?最新的是节俭0.9。我还可以使用吗?
或者我应该使用Scrooge?它在Scala上生成Java绑定。
答案 0 :(得分:3)
如果您的项目是Scala或Java,则应使用Scrooge。 thrift-0.5.0-finagle正在被弃用。
答案 1 :(得分:0)
你应该使用Scrooge。 Scrooge由Twitter开发。而Finagle也是由Twitter开发的。
提示:
scrooge maven插件应按如下方式配置
<plugin>
<groupId>com.twitter</groupId>
<artifactId>scrooge-maven-plugin</artifactId>
<version>${scrooge.version}</version>
<configuration>
<thriftSourceRoot>${basedir}/src/main/thrift</thriftSourceRoot>
<includes>
<set>SyncWrite.thrift</set>
</includes>
<outputDirectory>${basedir}/src/main/gen/</outputDirectory>
<thriftNamespaceMappings>
<thriftNamespaceMapping>
<from>com.ganji.cdc.xapian.thrift.cpp</from>
<to>com.ganji.cdc.xapian.thrift.cpp</to>
</thriftNamespaceMapping>
</thriftNamespaceMappings>
<language>experimental-java</language>
<thriftOpts>
<thriftOpt>--finagle</thriftOpt>
</thriftOpts>
<buildExtractedThrift>false</buildExtractedThrift>
</configuration>
<executions>
<execution>
<id>thrift-sources</id>
<phase>generate-sources</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>thrift-test-sources</id>
<phase>generate-test-sources</phase>
<goals>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
语言为
experimental-java
。如果您将其配置为Scrooge文档,请使用java
,libthrift
库必须使用0.5.0
。
依赖库如下
<finagle.version>6.25.0</finagle.version>
<scrooge.version>3.18.1</scrooge.version>
<!-- Finagle Start -->
<dependency>
<groupId>org.apache.thrift</groupId>
<artifactId>libthrift</artifactId>
<version>0.9.0</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>scrooge-core_2.10</artifactId>
<version>${scrooge.version}</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>scrooge-runtime_2.10</artifactId>
<version>${scrooge.version}</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>util-core_2.10</artifactId>
<version>6.24.0</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>finagle-core_2.10</artifactId>
<version>${finagle.version}</version>
</dependency>
<dependency>
<groupId>com.twitter</groupId>
<artifactId>finagle-thrift_2.10</artifactId>
<version>${finagle.version}</version>
</dependency>
<!-- Finagle End -->
就是这样。