added es code

This commit is contained in:
Pratik Das
2020-12-13 17:32:44 +05:30
parent d41fa4a006
commit e4e3d8a55b
2 changed files with 3 additions and 0 deletions

View File

@@ -86,6 +86,7 @@ if [[ "$MODULE" == "module5" ]]
then then
# ADD NEW MODULES HERE # ADD NEW MODULES HERE
# (add new modules above the rest so you get quicker feedback if it fails) # (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_maven_module "spring-boot/spring-boot-logging-2"
build_gradle_module "spring-boot/devtools-demo" build_gradle_module "spring-boot/devtools-demo"
build_gradle_module "spring-boot/cache" build_gradle_module "spring-boot/cache"

View File

@@ -1,3 +1,5 @@
# Related Blog Posts # Related Blog Posts
* [How to use Elasticsearch with Spring Data](https://reflectoring.io/springboot-elasticsearch/) * [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.