From e4e3d8a55b3665bbf4a1f1d50b0798d02f714213 Mon Sep 17 00:00:00 2001 From: Pratik Das Date: Sun, 13 Dec 2020 17:32:44 +0530 Subject: [PATCH] added es code --- build-all.sh | 1 + spring-boot/spring-boot-elasticsearch/README.md | 2 ++ 2 files changed, 3 insertions(+) diff --git a/build-all.sh b/build-all.sh index b54e49e..d2ddc76 100755 --- a/build-all.sh +++ b/build-all.sh @@ -86,6 +86,7 @@ if [[ "$MODULE" == "module5" ]] then # ADD NEW MODULES HERE # (add new modules above the rest so you get quicker feedback if it fails) + build_maven_module "spring-boot/spring-boot-elasticsearch" build_maven_module "spring-boot/spring-boot-logging-2" build_gradle_module "spring-boot/devtools-demo" build_gradle_module "spring-boot/cache" diff --git a/spring-boot/spring-boot-elasticsearch/README.md b/spring-boot/spring-boot-elasticsearch/README.md index 890eea4..19b373d 100644 --- a/spring-boot/spring-boot-elasticsearch/README.md +++ b/spring-boot/spring-boot-elasticsearch/README.md @@ -1,3 +1,5 @@ # Related Blog Posts * [How to use Elasticsearch with Spring Data](https://reflectoring.io/springboot-elasticsearch/) + +In this blog, we will use Spring Data Elasticsearch to highlight the main capabilities of Elasticsearch - indexing of documents and searching and finally build a simple search application for searching products in a product inventory.