diff --git a/How-to-start-with-spring-data-elasticsearch.md b/How-to-start-with-spring-data-elasticsearch.md new file mode 100644 index 0000000..5df527f --- /dev/null +++ b/How-to-start-with-spring-data-elasticsearch.md @@ -0,0 +1,35 @@ + +# First thing you will need to answer to yourself how you will use this framework. + +## Case 1: +I need only index and search documents in my project. +Quick start: +First add to your pom.xml file information about snapshot repository for spring-data-elasticsearch + + + spring-snapshot + Spring Maven SNAPSHOT Repository + http://repo.springsource.org/libs-snapshot + + + +Second add dependency for spring-data-elasticsearch + +... + + org.springframework.data + spring-data-elasticsearch + 1.0.0.BUILD-SNAPSHOT + +... + + +Having both entries in the pom file you should be able to use spring-data-elasticsearch without any issues. + + +## Case 2: +I have a plane to develop new feature/ or extend existing ones. +Quick start: + + +