Hi , I am having difficulty invoking elastic search from my spring boot application. I want to invoke the below query from my java spring boot application.
GET "http://localhost:9200/somedata/someaddress/_search" -H 'Content-Type: application/json' -d'
{
"query": {
"multi_match" : {
"query": "80 Church streed road SK4",
"fields": [ "postTown", "postcode" , "buildingNumber" , "thoroughfare" ]
}
}
}'