【发布时间】:2021-06-28 10:06:33
【问题描述】:
Kibana:
GET my_index/topiccollection/_search {"size":200,"sort":[{"updated_on":{"order":"desc"}}],"query":{"bool":{"should":[{"wildcard":{ "team_name":{"value":"melp"}}}],"filter":{"term":{"topictype":"0"}},"minimum_should_match":1} }}
Java:
@Query("{"bool":{"should":[{"wildcard":{"team_name":{"value":"?1"}}}],"filter":{"term" :{"topictype":"0"}},"minimum_should_match":1}}")
Page getTopicListByKeyword(String userName, String keyword, Pageable page);
【问题讨论】:
标签: elasticsearch elastic-stack elasticsearch-5 spring-data-elasticsearch elasticsearch-dsl