Compatible versions of Spring boot,elasticsearch and spring data elasticsearch

前端 未结 2 923
闹比i
闹比i 2021-01-21 05:53

I have been developing a simple java programming using spring boot,elastic search and spring data elastic search.

I am able to do the elastic search successfully with be

相关标签:
2条回答
  • 2021-01-21 06:05

    There isn't a compatible set of versions as Spring Data Elasticsearch doesn't support Elasticsearch 5.0 yet. See this issue that's tracking some of the work to support 5.0.

    Generally speaking, rather than trying to find compatible versions yourself, you should let Spring Boot's dependency management take care of that for you. If you are overriding that dependency management to use a new major version of a dependency, there is a very good chance that it won't work.

    0 讨论(0)
  • 2021-01-21 06:13

    Spring Data ES 3.0.0M4 release is compatible with ES 5.0 - Ref - DATAES-285

    0 讨论(0)
提交回复
热议问题