0

I used to use ElasticsearchTemplateto query ES.Recently I found a new component Resthighlevelclient can also query ES.Can anyone tell me the difference between the two and how to choose?

SuperPirate
  • 146
  • 1
  • 4

1 Answers1

2
  1. ElasticsearchTemplate is now deprecated and ElasticSearchRestTemplate is recommended.

enter image description here

  1. ElasticSearchRestTemplate is built on the top of RestHighLevelClient. You can think of it as a Spring wrapper over RestHighLevelClient.

enter image description here

Sahil Gupta
  • 2,028
  • 15
  • 22