Reputation: 169
I try to figure out what the newest version of elasticsearch can i use with the newest Spring boot release (currently it is 1.5.9). I've found matrix, but seems that it is out to date. Also I've found that spring data elasticsearch 3.0.2.RELEASE supports 5+ elasticsearch. So the questions are:
Upvotes: 2
Views: 1813
Reputation: 7703
answering your questions:
Unfortunately the spring data elasticseach 3.X requires the Spring Boot 2.X (see also this answer: Elasticsearch 5.x Repository Java Spring Boot)
With Spring Boot 1.X you could use latest 2.X spring data elasticsearch and with that you could use Elasticsearch 2.X.X version in this case.
I assume that you are aware that there is no 3.X and 4.X version of Elasticsearch - from versioning reasons they moved from 2.X to 5.X.
Upvotes: 6