springboot中如何集成elasticsearch
作者:WarmHope
时间:2023-05-15
来源:互联网
浏览:0
1,引入依赖org.springframework.bootspring-boot-starter-data-elasticsearch2,编写实体映射类@Data@Document(indexName="index",createIndex=true)publicclassIndex{@IdprivateStringid;@Field(type=FieldType.Text,analyzer="ik_max_word",searchAnalyzer="ik_smart")privateStringcon
1,引入依赖
org.springframework.boot spring-boot-starter-data-elasticsearch
2,编写实体映射类
@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,编写访问接口(如果需要自动创建索引,该接口必须写,否则项目启动时不会自动检测并创建索引)
@Repository public interface IndexRepository extends ElasticsearchRepository{ Page findByContent(String content, Pageable page); }
4,测试,用了template,和repository两种方式测试
@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","美国留给伊拉克的是个烂摊子吗"),
new Index("2","公安部:各地校车将享最高路权"),
new Index("3","中韩渔警冲突调查:韩警平均每天扣1艘中国渔船"),
new Index("4","中国驻洛杉矶领事馆遭亚裔男子枪击 嫌犯已自首"),
new Index("5","中国天眼向全球正式开放下月世界大赛将比拼FAST脉冲星搜索")
));
}
@Test
void testRepositoryQuery() {
Page pageList = indexRepository.findByContent("中国", PageRequest.of(0, 10));
pageList.getContent().forEach(e -> {
System.out.println("repositoryQuery => "+e);
});
}
@Test
void testTemplateQuery() {
BoolQueryBuilder queryBuilder = QueryBuilders.boolQuery()
.must(QueryBuilders.simpleQueryStringQuery("中国").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=中韩渔警冲突调查:韩警平均每天扣1艘中国渔船) templateQuery => Index(id=4, content=中国驻洛杉矶领事馆遭亚裔男子枪击 嫌犯已自首) templateQuery => Index(id=5, content=中国天眼向全球正式开放下月世界大赛将比拼FAST脉冲星搜索) init data repositoryQuery => Index(id=3, content=中韩渔警冲突调查:韩警平均每天扣1艘中国渔船) repositoryQuery => Index(id=4, content=中国驻洛杉矶领事馆遭亚裔男子枪击 嫌犯已自首) repositoryQuery => Index(id=5, content=中国天眼向全球正式开放下月世界大赛将比拼FAST脉冲星搜索)
5,可启动一个定时任务,定时ping,防止Connection time out
@Scheduled(fixedRate = 15000)
public void ping() {
esTemplate.execute(client -> client.ping(RequestOptions.DEFAULT));
}
作者最新文章
思源笔记
2026-09-16 17:42
在线PDF转TXT操作步骤与乱码排查指南
2026-09-04 13:02
PDF加水印后如何检查显示效果?在线工具操作步骤与避坑指南
2026-09-03 13:02
Xshell保持连接不断开及会话文件本地存储路径详解
2026-09-03 06:02
两个PDF怎么合并成一个?在线合并后怎么检查顺序?
2026-09-02 20:00
热门文章
更多
精品专题
更多
Mac软件
更多
WINDOWS
更多
Windows 10
Windows
Windows 10 是一款微软推出的经典操作系统,拥有硬件兼容性与多任务处理能力。它更偏向把系统状态查看和常用调节动作放在一起,适合需要持续观察和微调设备状态的场景。
极度公式
Windows/macOS/Linux
极度公式是一款跨平台专业LaTeX公式识别编辑软件,支持OCR公式识别和多平台编辑。和使用说明,避免使用,享受完整功能与稳定支持。做扫描整理、文字提取和表格转换时,它能把识别后的处理步骤接得更顺,资料录入这类场景会省下不少时间。
















