https://www.journaldev.com/18148/spring-boot-elasticsearch
mvn clean install
mvn test
#sample curl to create one offer curl --header 'Content-Type: application/json' --request POST --data '{"description":"test","discount": 11, "valid": true}' http://localhost:8080/offers
#response for above: {"id":"7d57950a-f0e9-49c2-8862-7f239c6ef672","description":"test","discount":11,"valid":true}
curl http://localhost:8080/offers/7d57950a-f0e9-49c2-8862-7f239c6ef672
curl --request DELETE http://localhost:8080/offers/7d57950a-f0e9-49c2-8862-7f239c6ef672