maven有了maven-thrift-plugin,机器还需要安装thrift才能用吗?

发布于 2022-09-12 03:48:33 字数 717 浏览 20 评论 0

有一个用了thrift的工程
mvn package打包,有如下错误

[INFO] 
[INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce) @ waimai_c_api_client ---
[INFO] 
[INFO] --- maven-thrift-plugin:0.1.11:compile (thrift-sources) @ waimai_c_api_client ---
[ERROR] thrift failed output: 
[ERROR] thrift failed error: /bin/sh: thrift: command not found

意思是不是有了maven-thrift-plugin这个maven插件还不够,还需要机器也安装thrift

另外,工程引入的libthrift是0.8.0版本

<dependency>
    <groupId>org.apache.thrift</groupId>
    <artifactId>libthrift</artifactId>
    <version>0.8.0</version>
    <type>pom</type>
</dependency>

那机器中应该安装的thrift版本最新的版本也可以?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

離人涙 2022-09-19 03:48:33

是的,需要安装 thrift.

参见源码: https://github.com/dtrott/mav...

    /**
     * This is the path to the {@code thrift} executable. By default it will search the {@code $PATH}.
     *
     * @parameter default-value="thrift"
     * @required
     */
    private String thriftExecutable;

默认的是 thrift(在当前环境搜索路径下找)。
可以通过参数指定位置,如:


 <plugin>
                <groupId>org.apache.thrift.tools</groupId>
                <artifactId>maven-thrift-plugin</artifactId>
                <version>0.1.10</version>
                <configuration>
                    <thriftExecutable>/usr/local/bin/thrift</thriftExecutable>
                </configuration>
...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文