mirror of
https://github.com/spring-projects/spring-data-elasticsearch.git
synced 2025-05-31 01:02:12 +00:00
47 lines
2.3 KiB
Plaintext
47 lines
2.3 KiB
Plaintext
[[preface]]
|
|
= Preface
|
|
|
|
The Spring Data Elasticsearch project applies core Spring concepts to the development of solutions using the Elasticsearch Search Engine.
|
|
It provides:
|
|
|
|
* _Templates_ as a high-level abstraction for storing, searching, sorting documents and building aggregations.
|
|
* _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]]
|
|
== Project Metadata
|
|
|
|
* Version Control - https://github.com/spring-projects/spring-data-elasticsearch
|
|
* API Documentation - https://docs.spring.io/spring-data/elasticsearch/docs/current/api/
|
|
* Bugtracker - https://github.com/spring-projects/spring-data-elasticsearch/issues
|
|
* Release repository - https://repo.spring.io/libs-release
|
|
* Milestone repository - https://repo.spring.io/libs-milestone
|
|
* Snapshot repository - https://repo.spring.io/libs-snapshot
|
|
|
|
[[preface.requirements]]
|
|
== Requirements
|
|
|
|
Requires an installation of https://www.elastic.co/products/elasticsearch[Elasticsearch].
|
|
|
|
[[preface.versions]]
|
|
=== Versions
|
|
|
|
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:
|
|
|
|
[cols="^,^,^,^,^",options="header"]
|
|
|===
|
|
| Spring Data Release Train | Spring Data Elasticsearch | Elasticsearch | Spring Framework | Spring Boot
|
|
| 2021.0 (Pascal)footnote:cdv[Currently in development] | 4.2.xfootnote:cdv[] | 7.10.2 | 5.3.xfootnote:cdv[] | 2.4.xfootnote:cdv[]
|
|
| 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
|
|
|===
|
|
|
|
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>>.
|