[[java-api]] = Java API :ref: http://www.elastic.co/guide/en/elasticsearch/reference/master [preface] == Preface This section describes the Java API that elasticsearch provides. All elasticsearch operations are executed using a <> object. All operations are completely asynchronous in nature (either accepts a listener, or returns a future). Additionally, operations on a client may be accumulated and executed in <>. Note, all the APIs are exposed through the Java API (actually, the Java API is used internally to execute them). == Maven Repository Elasticsearch is hosted on http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22elasticsearch%22[Maven Central]. For example, you can define the latest version in your `pom.xml` file: [source,xml] -------------------------------------------------- org.elasticsearch elasticsearch ${es.version} -------------------------------------------------- == Dealing with JAR dependency conflicts If you want to use Elasticsearch in your Java application, you may have to deal with version conflicts with third party dependencies like Guava and Joda. For instance, perhaps Elasticsearch uses Joda 2.8, while your code uses Joda 2.1. You have two choices: * The simplest solution is to upgrade. Newer module versions are likely to have fixed old bugs. The further behind you fall, the harder it will be to upgrade later. Of course, it is possible that you are using a third party dependency that in turn depends on an outdated version of a package, which prevents you from upgrading. * The second option is to relocate the troublesome dependencies and to shade them either with your own application or with Elasticsearch and any plugins needed by the Elasticsearch client. The https://www.elastic.co/blog/to-shade-or-not-to-shade["To shade or not to shade" blog post] describes all the steps for doing so. == Embedding jar with dependencies If you want to create a single jar containing your application and all dependencies, you should not use `maven-assembly-plugin` for that because it can not deal with `META-INF/services` structure which is required by Lucene jars. Instead, you can use `maven-shade-plugin` and configure it as follow: [source,xml] -------------------------------------------------- org.apache.maven.plugins maven-shade-plugin 2.4.1 package shade -------------------------------------------------- Note that if you have a `main` class you want to automatically call when running `java -jar yourjar.jar`, just add it to the `transformers`: [source,xml] -------------------------------------------------- org.elasticsearch.demo.Generate -------------------------------------------------- == Deploying in JBoss EAP6 module Elasticsearch and Lucene classes need to be in the same JBoss module. You should define a `module.xml` file like this: [source,xml] -------------------------------------------------- -------------------------------------------------- include::client.asciidoc[] include::docs.asciidoc[] include::search.asciidoc[] include::aggs.asciidoc[] include::query-dsl.asciidoc[] include::indexed-scripts.asciidoc[] include::admin/index.asciidoc[]