Spring Data Elasticsearch - 基本案例

This commit is contained in:
JeffLi1993
2017-06-13 18:36:53 +08:00
committed by liqiangqiang
parent 40bf6e9766
commit 00133b019a
2 changed files with 8 additions and 0 deletions

View File

@@ -70,6 +70,10 @@ Dubbo 服务提供者工程和 Dubbo 服务消费者工程 <br>
[《Spring Boot 中如何使用 Dubbo Activate 扩展点》](http://www.bysocket.com/?p=1782 "Spring Boot 中如何使用 Dubbo Activate 扩展点")<br>
###『 Spring Data ES 篇 』
- spring-data-elasticsearch-crud <br>
Spring Data Elasticsearch - 基本案例
## 二、项目 Quick Start 快速开发指南
#### a. 基本环境配置
在 MySQL 中,创建数据库 springbootdb
@@ -92,6 +96,7 @@ CREATE TABLE `city` (
INSERT city VALUES (1 ,1,'温岭市','BYSocket 的家在温岭。');
````
<br>
### 《 springboot-mybatis 工程 Quick Start 》
首先 check 基本环境配置完成,创建好数据库和表。

View File

@@ -48,6 +48,9 @@
<!-- Spring Boot 整合 Elasticsearch -->
<module>springboot-elasticsearch</module>
<!-- Spring Data ES 篇 -->
<module>spring-data-elasticsearch-crud</module>
</modules>
</project>