在spring boot / spring data elasticsearch中禁用自动索引创建

Posted

技术标签:

【中文标题】在spring boot / spring data elasticsearch中禁用自动索引创建【英文标题】:Disable automatic index creation in spring boot / spring data elasticsearch 【发布时间】:2017-12-17 20:20:17 【问题描述】:

我想将创建索引(包括设置和映射)的过程与应用程序的其余部分分开,以便更好地控制我的应用程序的行为。 我的 spring boot 项目在启动时自动创建索引。有没有办法禁用自动索引创建过程?

【问题讨论】:

我不知道这是否可行,但这可能会对您有所帮助,因为我认为文档中没有:@Document 的索引将尽快创建因为该文档的存储库已创建。 【参考方案1】:

@Document 注释具有 createIndex 属性,默认设置为 true。只需将其设置为:

@Document(indexName = "products", createIndex = false)

【讨论】:

该字段存在于哪个版本中?看起来它已经过时并且在最新版本中不存在。 在您提出问题的那一刻,Spring Data Elasticsearch 的当前版本是 3.0.4,我仍然看到它存在于 API 中(3.1.0.M1 也有 createIndex)。 设置无效

以上是关于在spring boot / spring data elasticsearch中禁用自动索引创建的主要内容,如果未能解决你的问题,请参考以下文章

来自 chrome 扩展的 Spring Boot 上的交叉原点

Spring Boot 无法从数据源确定 jdbc url

在 AWS 上部署带有 H2 数据库的 Spring Boot 应用程序

spring boot data jpa mysql无法创建数据库

使用 spring boot、kotlin 和 junit 进行休息控制器单元测试

springboot连接redis