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.