Spring-Boot:在ElasticSearch中的现有索引中搜索

时间:2015-09-22 11:39:35

标签: elasticsearch spring-boot spring-data-elasticsearch

我想创建一个应用程序,我使用Spring-Boot在ElasticSearch的现有索引中搜索文档。我在文档中搜索了我没有找到任何有关连接到现有索引的信息。有什么帮助吗?

1 个答案:

答案 0 :(得分:0)

你应该看看docs.spring.io/spring-data/elasticsearch/docs/current/reference/...您可以通过使用@Document注释实体来定义要访问的索引,并使用您要使用的索引的名称传递param indexName。

@Document(indexName = "people")
public class Person {

    @Id
    private String id;

    private String firstName;

    private String lastName;

    // …
}