亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用SpringBoot如何實現對ElasticSearch進行整合

發布時間:2020-11-19 16:40:58 來源:億速云 閱讀:210 作者:Leah 欄目:編程語言

這篇文章給大家介紹使用SpringBoot如何實現對ElasticSearch進行整合,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

一、實體設計:

Tutorial.java

public class Tutorial implements Serializable{
 private Long id;
 private String name;//教程名稱
 
 //setters and getters
 //toString
}

Author.java

public class Author implements Serializable{
 /**
 * 作者id
 */
 private Long id;
 /**
 * 作者姓名
 */
 private String name;
 /**
 * 作者簡介
 */
 private String remark;
 
 //setters and getters
 //toString
 
}

Article.java

public class Article implements Serializable{
 private Long id;
 /**標題*/
 private String title;
 /**摘要*/
 private String abstracts;
 /**內容*/
 private String content;
 /**發表時間*/
 private Date postTime;
 /**點擊率*/
 private Long clickCount;
 /**作者*/
 private Author author;
 /**所屬教程*/
 private Tutorial tutorial;
 
 //setters and getters
 //toString
}

二、整合SpringBoot與ElasticSearch

1、引入相應的依賴

pom.xml

<parent>
 <groupId> org.springframework.boot </groupId>
 <artifactId> spring-boot-starter-parent </artifactId>
 <version> 1.3.0.RELEASE </version>
 </parent>
 
 <dependencies>
     <!-- 添加 web 應用的依賴 -->
 <dependency>
  <groupId> org.springframework.boot </groupId>
  <artifactId> spring-boot-starter-web </artifactId>
 </dependency>
 <!-- 添加 spring-data-elasticsearch的依賴 -->
 <dependency>
  <groupId> org.springframework.boot </groupId>
  <artifactId> spring-boot-starter-data-elasticsearch </artifactId>
 </dependency>
 <dependency>
  <groupId> org.springframework.boot</groupId>
  <artifactId> spring-boot-starter-test </artifactId>
 </dependency>
 </dependencies>

2、修改配置文件

application.yml

spring:
  data:
    elasticsearch: 
      cluster-name: #默認為elasticsearch
      cluster-nodes: #配置es節點信息,逗號分隔,如果沒有指定,則啟動ClientNode
      properties:
        path:
         logs: ./elasticsearch/log #elasticsearch日志存儲目錄
         data: ./elasticsearch/data #elasticsearch數據存儲目錄

這些配置的屬性,最終會設置到ElasticsearchProperties這個實體中。

3、為實體添加ElascticSearch的注解

Spring-data-elasticSearch提供了一些注解來幫助我們快速針對實體建立索引。

使用SpringBoot如何實現對ElasticSearch進行整合

因為我們希望Article作為我們文章的搜索入口,所以我們在Article類上添加@Document注解。

@Document(indexName="projectname",type="article",indexStoreType="fs",shards=5,replicas=1,refreshInterval="-1")
public class Article implements Serializable{
....
}

默認情況下,添加@Document注解會對實體中的所有屬性建立索引,由于本教程是講解如何整合,并不是專門講解ElasticSearch,故對于其他注解不再講解。

4、建立搜索類

我們只要編寫一個接口ArticleSearchRepository,來繼承Spring-data-elasticSearch提供的ElasticsearchRepository即可。

import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
 
import com.tianshouzhi.springbootstudy.domain.Article;
//泛型的參數分別是實體類型和主鍵類型
public interface ArticleSearchRepository extends ElasticsearchRepository<Article, Long>{
 
}

5、單元測試

5.1、創建索引

@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = Application.class)
public class ElasticSearchTest {
 
 @Autowired
 private ArticleSearchRepository articleSearchRepository;
 @Test
 public void testSaveArticleIndex(){
 Author author=new Author();
 author.setId(1L);
 author.setName("tianshouzhi");
 author.setRemark("java developer");
 
 Tutorial tutorial=new Tutorial();
 tutorial.setId(1L);
 tutorial.setName("elastic search");
 
 Article article =new Article();
 article.setId(1L);
 article.setTitle("springboot integreate elasticsearch");
 article.setAbstracts("springboot integreate elasticsearch is very easy");
 article.setTutorial(tutorial);
 article.setAuthor(author);
 article.setContent("elasticsearch based on lucene,"
  + "spring-data-elastichsearch based on elaticsearch"
  + ",this tutorial tell you how to integrete springboot with spring-data-elasticsearch");
 article.setPostTime(new Date());
 article.setClickCount(1L);
 
 articleSearchRepository.save(article);
 }
 
}

運行單元測試,項目根目錄下出現:

使用SpringBoot如何實現對ElasticSearch進行整合

說明我們索引已經創建成功。

5.2測試搜索:

@Test
 public void testSearch(){
 String queryString="springboot";//搜索關鍵字
 QueryStringQueryBuilder builder=new QueryStringQueryBuilder(queryString);
 Iterable<Article> searchResult = articleSearchRepository.search(builder);
 Iterator<Article> iterator = searchResult.iterator();
 while(iterator.hasNext()){
  System.out.println(iterator.next());
 }
 }

運行單元測試,控制臺輸出

復制代碼 代碼如下:

Article [id=1, title=springboot integreate elasticsearch, abstracts=springboot integreate elasticsearch is very easy, content=elasticsearch based on lucene,spring-data-elastichsearch based on elaticsearch,this tutorial tell you how to integrete springboot with spring-data-elasticsearch, postTime=Sun Feb 21 16:01:37 CST 2016, clickCount=1, author=Author [id=1, name=tianshouzhi, remark=java developer], tutorial=Tutorial [id=1, name=elastic search]]

說明搜索成功。讀者可以嘗試其他的搜索關鍵字進行搜索。

 說明:以上方式是SpringBoot與ElasticSearch進行本地整合,即將ElasticSearch內嵌在應用,如果我們搭建了ElasticSearch集群,只需要將配置改為如下配置即可:

spring:
  data:
    elasticsearch: 
      cluster-nodes:115.28.65.149:9300 #配置es節點信息,逗號分隔,如果沒有指定,則啟動ClientNode

關于使用SpringBoot如何實現對ElasticSearch進行整合就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

昌宁县| 随州市| 澄迈县| 齐齐哈尔市| 六安市| 友谊县| 清远市| 新巴尔虎左旗| 临漳县| 柘城县| 馆陶县| 青浦区| 理塘县| 文水县| 开平市| 聂拉木县| 襄汾县| 镇赉县| 清原| 五常市| 普陀区| 柳河县| 郑州市| 仙居县| 涟源市| 大冶市| 秭归县| 喀喇沁旗| 大洼县| 元朗区| 宣化县| 新竹市| 堆龙德庆县| 民乐县| 介休市| 平定县| 南部县| 平陆县| 辰溪县| 本溪市| 山东省|