How to search via Json in elastic search using spring resttemplate in android

后端 未结 2 429
醉梦人生
醉梦人生 2020-12-06 15:48

Hi i am trying to search data in elastic search using spring RestTemplate. ElasticSearch have user name and password and i want to search via json.

I wrote code for

2条回答
  •  一个人的身影
    2020-12-06 16:09

    Unlike other Relational Databases, you don't need Spring RestTemplate to query the elastic database. ElasticSearch comes with inbuilt Java API library. You directly use those functions to create your query and get the results.

    Checkout this Link. It has the documentation about how to use the API.

    Elastic Search Java API 5.1

提交回复
热议问题