2017-01-13 11 views
2

私はelasticsearchに慣れ親しんで、Java APIを使って基本的なプログラムを作成しようとしています。私はしばらくの間、答えを研究してきましたが、私が誤って見つけた解決策を実行しているのか、本当の問題を見ていないのか分かりません。Elastic Search java.lang.NoClassDefFoundError:org/elasticsearch/transport/Netty3Plugin

私はelasticsearch-5.1.1を使用していて、最新のトランスポートバージョン(5.1.1)をダウンロードしました。私はまた、私のプロジェクト構造の中にelasticsearchダウンロードに付属しているすべてのjarファイルを含む両方を追加しました。

ありがとうございます!

テストファイルを実行しているときに、次のエラーが発生しています。

エラー:私は私のpom.xmlファイルに次の依存関係を追加し、与えられたdirectionsを次xpackをインストールしている

java.lang.NoClassDefFoundError: org/elasticsearch/transport/Netty3Plugin 

at org.elasticsearch.transport.client.PreBuiltTransportClient.<clinit>(PreBuiltTransportClient.java:54) 
at DictionarySearch.ElasticSearch.<init>(ElasticSearch.java:41) 
at test.TestIndexSearcher.verifyElasticSearch(TestIndexSearcher.java:64) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 
at java.lang.reflect.Method.invoke(Method.java:497) 
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) 
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) 
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) 
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) 
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325) 
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78) 
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57) 
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) 
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) 
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) 
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) 
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) 
at org.junit.runners.ParentRunner.run(ParentRunner.java:363) 
at org.junit.runner.JUnitCore.run(JUnitCore.java:137) 
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:117) 
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:42) 
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:262) 
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:84) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 
at java.lang.reflect.Method.invoke(Method.java:497) 
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147) 
Caused by: java.lang.ClassNotFoundException: org.elasticsearch.transport.Netty3Plugin 
at java.net.URLClassLoader.findClass(URLClassLoader.java:381) 
at java.lang.ClassLoader.loadClass(ClassLoader.java:424) 
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331) 
at java.lang.ClassLoader.loadClass(ClassLoader.java:357) 
... 30 more 

。私のpom.xmlは、私のlog4j2.xmlファイルと共にsrc/libの場所です。

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 
<modelVersion>4.0.0</modelVersion> 
<groupId>org.elasticsearch.client</groupId> 
<artifactId>transport</artifactId> 
<version>5.1.1</version> 
<repositories> 
    <repository> 
     <id>elasticsearch-releases</id> 
     <url>https://maven.elasticsearch.org/releases</url> 
     <releases> 
      <enabled>true</enabled> 
     </releases> 
     <snapshots> 
      <enabled>false</enabled> 
     </snapshots> 
    </repository> 
</repositories> 

<dependencies> 
    <dependency> 
     <groupId>org.elasticsearch.client</groupId> 
     <artifactId>x-pack-transport</artifactId> 
     <version>5.1.1</version> 
    </dependency> 
    <dependency> 
     <groupId>org.elasticsearch</groupId> 
     <artifactId>elasticsearch-transport-wares</artifactId> 
     <version>2.7.0</version> 
    </dependency> 
    <dependency> 
     <groupId>org.elasticsearch</groupId> 
     <artifactId>elasticsearch</artifactId> 
     <version>5.1.1</version> 
     <scope>compile</scope> 
    </dependency> 
    <dependency> 
     <groupId>org.elasticsearch.plugin</groupId> 
     <artifactId>transport-netty3-client</artifactId> 
     <version>5.1.1</version> 
     <scope>compile</scope> 
    </dependency> 
    <dependency> 
     <groupId>org.apache.logging.log4j</groupId> 
     <artifactId>log4j-api</artifactId> 
     <version>2.7</version> 
     <scope>test</scope> 
    </dependency> 
    <dependency> 
     <groupId>org.apache.logging.log4j</groupId> 
     <artifactId>log4j-core</artifactId> 
     <version>2.7</version> 
     <scope>test</scope> 
    </dependency> 
    <dependency> 
     <groupId>org.elasticsearch.plugin</groupId> 
     <artifactId>transport-netty4-client</artifactId> 
     <version>5.1.1</version> 
     <scope>compile</scope> 
    </dependency> 
    <dependency> 
     <groupId>org.elasticsearch.plugin</groupId> 
     <artifactId>reindex-client</artifactId> 
     <version>5.1.1</version> 
     <scope>compile</scope> 
    </dependency> 
    <dependency> 
     <groupId>org.elasticsearch.plugin</groupId> 
     <artifactId>lang-mustache-client</artifactId> 
     <version>5.1.1</version> 
     <scope>compile</scope> 
    </dependency> 
    <dependency> 
     <groupId>org.elasticsearch.plugin</groupId> 
     <artifactId>percolator-client</artifactId> 
     <version>5.1.1</version> 
     <scope>compile</scope> 
    </dependency> 
</dependencies> 
<inceptionYear>2009</inceptionYear> 
<licenses> 
    <license> 
     <name>The Apache Software License, Version 2.0</name> 
     <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 
     <distribution>repo</distribution> 
    </license> 
</licenses> 
<developers> 
    <developer> 
     <name>Elastic</name> 
     <url>http://www.elastic.co</url> 
    </developer> 
</developers> 
<name>transport</name> 
<description>Elasticsearch subproject :client:transport</description> 
<url>https://github.com/elastic/elasticsearch</url> 
<scm> 
    <url>[email protected]:elastic/elasticsearch.git</url> 
</scm> 

答えて

0

私はMavenのが正しく、私のIDEで設定がありませんでしたが判明。私はIntelliJを使用しています。 IntelliJでは、プロジェクトのセットアップ時にmavenを使用していることを示す必要があります。

私の問題を解決するために、私はmavenで新しいプロジェクトを作成し、Javaクラスファイルを移動しました。私のためにpom.xmlファイルが自動的に作成されました。私は必要な依存関係のみをpom.xmlファイルに追加して、Mavenを使ってプロジェクトに自動的にインポートすることができました。

この問題が発生した場合は、IDEがMavenを使用していると思われるかどうかを再確認することをおすすめします。

関連する問題