Nếu bạn cần làm điều đó theo cách có lập trình, bạn chỉ có thể tạo @Configuration mới của Spring và thực hiện khởi tạo như vậy:
@Configuration
@DependsOn("mongoTemplate")
public class CollectionsConfig {
@Autowired
private MongoTemplate mongoTemplate;
@PostConstruct
public void initIndexes() {
mongoTemplate.indexOps("collectionName") // collection name string or .class
.ensureIndex(
new Index().on("name", Sort.Direction.ASC)
);
}
}