Java ‘Elasticsearch‘ 操作

依赖

复制代码
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-elasticsearch -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
    <version>2.3.12.RELEASE</version>
</dependency>

配置

复制代码
spring:
  elasticsearch:
    uris: http://192.168.0.226:9200

对象

复制代码
@Autowired
private ElasticsearchRestTemplate elasticsearchRestTemplate;

添加索引操作

复制代码
elasticsearchRestTemplate.indexOps(IndexCoordinates.of("indexname")).create();

IndexCoordinates可以给多个索引

删除索引

elasticsearchRestTemplate.indexOps(IndexCoordinates.of("indexname")).delete();

添加操作

复制代码
IndexQuery indexQuery = new IndexQueryBuilder()
        .withId(productId)
                .withObject(product4ES)
                        .build();
elasticsearchRestTemplate.index(indexQuery, IndexCoordinates.of("products"));

查询操作

这个类是封装查询数据的

NativeSearchQuery query = new NativeSearchQueryBuilder()

要查询的字段

.withQuery(multiMatchQuery(keyword, "productName", "productSkuName"))

分页由于里面比尔帮你做好了就不要套用公式了

.withPageable(PageRequest.of(pageNum - 1, limit))

这里是高亮显示,用的是可变参数

.withHighlightFields(new HighlightBuilder.Field("productName").preTags("<label style='color: red'>").postTags("</label>"), new HighlightBuilder.Field("productSkuName").preTags("<label style='color: red'>").postTags("</label>"))

这里是构建

.build();

复制代码
elasticsearchRestTemplate.search调用这个方法
复制代码
search(封装的查询调教, 里面装的类型自动的, IndexCoordinates.of("要差的索引"))
复制代码
SearchHits得到这个
复制代码
search.getTotalHits();获取查询到的count

product4ES是我自己创建的然后装得到index

获取搜索的结果

复制代码
List<SearchHit<Product4ES>> searchHits = search.getSearchHits();
创建一个等等用
List<Product4ES> list = new ArrayList<>();
for (SearchHit<Product4ES> hit : searchHits) {
获取返回的对象用什么对象装的什么对象拿自动的
    Product4ES product4ES = hit.getContent();
获取高亮map对象多个高亮map就有多个值
    Map<String, List<String>> highlightFields = hit.getHighlightFields();
获取叫下面这个名字的字段的高亮文本这里可能一段文字多个高亮
    List<String> productName = highlightFields.get("productName");
    if (!productName.isEmpty()) {
拿到第一个高亮,并设置
        product4ES.setProductName(productName.get(0));
    }
设置到对象
    list.add(product4ES);
}

计算总页数

复制代码
int pageCount = ((int) (count % limit == 0 ? count / limit : count / limit + 1));
相关推荐
原来是好奇心11 小时前
深入Spring Boot源码(六):Actuator端点与监控机制深度解析
java·开发语言·源码·springboot
叠叠乐11 小时前
robot_state_publisher 参数
java·前端·算法
过期动态11 小时前
JDBC高级篇:优化、封装与事务全流程指南
android·java·开发语言·数据库·python·mysql
WizLC11 小时前
【Java】各种IO流知识详解
java·开发语言·后端·spring·intellij idea
Mr.朱鹏12 小时前
SQL深度分页问题案例实战
java·数据库·spring boot·sql·spring·spring cloud·kafka
小张快跑。12 小时前
【Java企业级开发】(十一)企业级Web应用程序Servlet框架的使用(上)
java·前端·servlet
星星不打輰12 小时前
SSM项目--SweetHouse 甜蜜蛋糕屋
java·spring·mybatis·ssm·springmvc
傻啦嘿哟12 小时前
实战:用Splash搞定JavaScript密集型网页渲染
开发语言·javascript·ecmascript
Knight_AL12 小时前
Java 线程池预热(Warm-up)实战:开启与不开启到底差多少?
java·开发语言
爬山算法12 小时前
Netty(15)Netty的线程模型是什么?它有哪些线程池类型?
java·后端