現在、TextIndex
のインデックス名を設定する方法はありません。 注釈ベースの設定を使用します。これを行うには、IndexOperations
を使用してください template
経由 テキストインデックスを手動で設定します。
template.indexOps(Person.class)
.ensureIndex(
new TextIndexDefinitionBuilder()
.named("YourIndexNameHere")
.onField("biography")
.build());