真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

springboot中如何集成elasticsearch

這篇文章主要介紹“springboot中如何集成elasticsearch”的相關(guān)知識(shí),小編通過實(shí)際案例向大家展示操作過程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“springboot中如何集成elasticsearch”文章能幫助大家解決問題。

專業(yè)成都網(wǎng)站建設(shè)公司,做排名好的好網(wǎng)站,排在同行前面,為您帶來客戶和效益!成都創(chuàng)新互聯(lián)為您提供成都網(wǎng)站建設(shè),五站合一網(wǎng)站設(shè)計(jì)制作,服務(wù)好的網(wǎng)站設(shè)計(jì)公司,成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè)負(fù)責(zé)任的成都網(wǎng)站制作公司!

1,引入依賴

		
			org.springframework.boot
			spring-boot-starter-data-elasticsearch
		

2,編寫實(shí)體映射類

@Data
@Document(indexName = "index", createIndex = true)
public class Index {
	@Id
    private String id;

    @Field(type = FieldType.Text, analyzer = "ik_max_word", searchAnalyzer = "ik_smart")
	private String content;
}

3,編寫訪問接口(如果需要自動(dòng)創(chuàng)建索引,該接口必須寫,否則項(xiàng)目啟動(dòng)時(shí)不會(huì)自動(dòng)檢測(cè)并創(chuàng)建索引)

@Repository
public interface IndexRepository extends ElasticsearchRepository {
	Page findByContent(String content, Pageable page);
}

4,測(cè)試,用了template,和repository兩種方式測(cè)試

@SpringBootTest
public class EsTest {
	@Autowired
	ElasticsearchRestTemplate esTemplate;
	@Autowired
	IndexRepository indexRepository;
	
	@BeforeEach
	public void init() {
		System.out.println("init");
		indexRepository.deleteAll();
		indexRepository.saveAll(ListUtil.of(
		new Index("1","美國(guó)留給伊拉克的是個(gè)爛攤子嗎"),
		new Index("2","公安部:各地校車將享最高路權(quán)"),
		new Index("3","中韓漁警沖突調(diào)查:韓警平均每天扣1艘中國(guó)漁船"),
		new Index("4","中國(guó)駐洛杉磯領(lǐng)事館遭亞裔男子槍擊 嫌犯已自首"),
		new Index("5","中國(guó)天眼向全球正式開放下月世界大賽將比拼FAST脈沖星搜索")
		));
	}
	
	@Test
	void testRepositoryQuery() {
		Page pageList = indexRepository.findByContent("中國(guó)", PageRequest.of(0, 10));
		pageList.getContent().forEach(e -> {
			System.out.println("repositoryQuery => "+e);
		});
	}
	
	@Test
	void testTemplateQuery() {
		BoolQueryBuilder queryBuilder = QueryBuilders.boolQuery()
				.must(QueryBuilders.simpleQueryStringQuery("中國(guó)").field("content"));
		NativeSearchQuery query = new NativeSearchQueryBuilder()
				.withQuery(queryBuilder)
				.withPageable(PageRequest.of(0, 10))
				.build();
		SearchHits search = esTemplate.search(query, Index.class);
		if(search.hasSearchHits()) {
			search.getSearchHits().forEach(e -> {
				System.out.println("templateQuery => "+e.getContent());
			});
		}
	}
}
init data
templateQuery => Index(id=3, content=中韓漁警沖突調(diào)查:韓警平均每天扣1艘中國(guó)漁船)
templateQuery => Index(id=4, content=中國(guó)駐洛杉磯領(lǐng)事館遭亞裔男子槍擊 嫌犯已自首)
templateQuery => Index(id=5, content=中國(guó)天眼向全球正式開放下月世界大賽將比拼FAST脈沖星搜索)
init data
repositoryQuery => Index(id=3, content=中韓漁警沖突調(diào)查:韓警平均每天扣1艘中國(guó)漁船)
repositoryQuery => Index(id=4, content=中國(guó)駐洛杉磯領(lǐng)事館遭亞裔男子槍擊 嫌犯已自首)
repositoryQuery => Index(id=5, content=中國(guó)天眼向全球正式開放下月世界大賽將比拼FAST脈沖星搜索)

5,可啟動(dòng)一個(gè)定時(shí)任務(wù),定時(shí)ping,防止Connection time out

    @Scheduled(fixedRate = 15000)
	public void ping() {
		esTemplate.execute(client -> client.ping(RequestOptions.DEFAULT));
	}

關(guān)于“springboot中如何集成elasticsearch”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。


分享名稱:springboot中如何集成elasticsearch
分享鏈接:http://weahome.cn/article/jiihhg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部