gpt4 book ai didi

java - NoSuchMethodError : com. google.common.util.concurrent.MoreExecutors.directExecutor 在 Elasticsearch jar 上发生冲突

转载 作者:太空狗 更新时间:2023-10-29 22:52:58 27 4
gpt4 key购买 nike

创建 Elasticsearch 客户端时,我遇到异常 java.lang.NoSuchMethodError: com.google.common.util.concurrent.MoreExecutors.directExecutor()Ljava/util/concurrent/Executor;经过一番查找后,像 Guava-18 这样的接缝在运行时被旧版本覆盖,而 Guava-18 仅在编译任务期间有效。

我的 Maven 配置如下:

    <build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

如何在执行时强制使用 Guava-18 版本?

最佳答案

你应该尝试找到“旧”版本的 Guava 的来源,并一劳永逸地排除它。

查找依赖:

mvn 依赖:树 | grep Guava

排除它:

<dependency>
<groupId>org.whatever</groupId>
<artifactId>the_lib_that_includes_guava</artifactId>
<version>0.97</version>
<exclusions>
<exclusion>
<artifactId>com.google</artifactId>
<groupId>guava</groupId>
</exclusion>
</exclusions>
</dependency>

参见 https://maven.apache.org/guides/introduction/introduction-to-optional-and-excludes-dependencies.html有关依赖项排除的更多信息。

关于java - NoSuchMethodError : com. google.common.util.concurrent.MoreExecutors.directExecutor 在 Elasticsearch jar 上发生冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35157642/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com