2019-07-16 09:32:33 +02:00
[[preface]]
2014-08-07 12:24:32 -05:00
= Preface
2020-08-18 20:59:35 +02:00
The Spring Data Elasticsearch project applies core Spring concepts to the development of solutions using the Elasticsearch Search Engine.
It provides:
2014-08-07 12:24:32 -05:00
2019-12-24 09:23:23 +01:00
* _Templates_ as a high-level abstraction for storing, searching, sorting documents and building aggregations.
2019-06-28 21:40:59 +02:00
* _Repositories_ which for example enable the user to express queries by defining interfaces having customized method names (for basic information about repositories see <<repositories>>).
You will notice similarities to the Spring data solr and mongodb support in the Spring Framework.
include::reference/elasticsearch-new.adoc[leveloffset=+1]
[[preface.metadata]]
2014-08-07 12:24:32 -05:00
== Project Metadata
2014-08-22 15:23:28 +02:00
* Version Control - https://github.com/spring-projects/spring-data-elasticsearch
2019-06-28 21:40:59 +02:00
* API Documentation - https://docs.spring.io/spring-data/elasticsearch/docs/current/api/
2021-01-02 18:04:44 +01:00
* Bugtracker - https://github.com/spring-projects/spring-data-elasticsearch/issues
2014-08-22 15:23:28 +02:00
* Release repository - https://repo.spring.io/libs-release
* Milestone repository - https://repo.spring.io/libs-milestone
* Snapshot repository - https://repo.spring.io/libs-snapshot
2014-08-07 12:24:32 -05:00
2019-06-28 21:40:59 +02:00
[[preface.requirements]]
2014-08-07 12:24:32 -05:00
== Requirements
2019-06-28 21:40:59 +02:00
Requires an installation of https://www.elastic.co/products/elasticsearch[Elasticsearch].
[[preface.versions]]
=== Versions
2020-08-12 20:37:08 +02:00
The following table shows the Elasticsearch versions that are used by Spring Data release trains and version of Spring Data Elasticsearch included in that, as well as the Spring Boot versions referring to that particular Spring Data release train:
2020-08-18 20:59:35 +02:00
2020-12-31 15:03:45 +01:00
[cols="^,^,^,^,^",options="header"]
2019-06-28 21:40:59 +02:00
|===
2020-12-31 15:03:45 +01:00
| Spring Data Release Train | Spring Data Elasticsearch | Elasticsearch | Spring Framework | Spring Boot
2021-01-17 18:46:50 +01:00
| 2021.0 (Pascal)footnote:cdv[Currently in development] | 4.2.xfootnote:cdv[] | 7.10.2 | 5.3.xfootnote:cdv[] | 2.4.xfootnote:cdv[]
2020-12-31 15:03:45 +01:00
| 2020.0 (Ockham) | 4.1.x | 7.9.3 | 5.3.2 | 2.4.x
| Neumann | 4.0.x | 7.6.2 | 5.2.12 |2.3.x
| Moore | 3.2.x |6.8.12 | 5.2.12| 2.2.x
| Lovelacefootnote:oom[Out of maintenance] | 3.1.xfootnote:oom[] | 6.2.2 | 5.1.19 |2.1.x
| Kayfootnote:oom[] | 3.0.xfootnote:oom[] | 5.5.0 | 5.0.13 | 2.0.x
| Ingallsfootnote:oom[] | 2.1.xfootnote:oom[] | 2.4.0 | 4.3.25 | 1.5.x
2019-06-28 21:40:59 +02:00
|===
2019-09-10 12:35:21 +02:00
Support for upcoming versions of Elasticsearch is being tracked and general compatibility should be given assuming the usage of the <<elasticsearch.clients.rest,high-level REST client>>.