作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设spring-boot-starter-data-elasticsearch版本2.1.0.RC1。
采用以下简单的方法为实体建立索引:
IndexQuery indexQuery = new IndexQueryBuilder().withId(entity.getId()).withObject(entity).build();
String id = elasticsearchTemplate.index(indexQuery);
POST /{index}/{entity id}?op_type=create
{
"id" : "{entity id}",
"attribute" : "value"
}
最佳答案
Spring Data ES目前不支持此功能。
有一个公开的问题报告了该功能,您可能需要检查一下:https://jira.spring.io/browse/DATAES-247
关于elasticsearch - 如何在Spring Data Elasticsearch中的IndexQuery上设置OpType,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53045966/
在这段代码中,IndexQuery下面有一条红色的波浪线。 , PatchRequest , 和 PatchCommandType ,表示没有导入正确的命名空间。 我需要导入什么命名空间? using
我是一名优秀的程序员,十分优秀!