- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图弄清楚为什么我必须将bean名称设置为elasticsearchTemplate
。没有它,我的应用程序崩溃。我有以下代码来配置我的Rest客户端。问题是如果我不将elasticsearchTemplate
添加为bean名称,它将失败并表示找不到elasticsearchTemplate
。关于为什么这样做的任何想法,以及使用elasticsearchoperations
与elasticsearchtemplate
有什么区别?
Using Spring-Data-Elasticsearch Version 3.2
Using Java High-Level Rest Client Version 6.8.0
@Bean("elasticsearchtemplate")
public ElasticsearchOperations elasticsearchTemplate() throws Exception {
return new ElasticsearchTemplate(client());
}
public ElasticsearchOperations elasticsearchTemplate() throws Exception {
return new ElasticsearchTemplate(client());
}
最佳答案
可能是因为启动配置(application.properties)缺少与elasticsearch相关的配置。
您需要在application.properties
文件中定义一些 flex 搜索属性,例如集群节点,集群名称,这些属性由ElasticsearchTemplate和ElasticsearchRepository用于连接到Elasticsearch引擎。
作为follows
关于java - 使用elasticsearchoperations与elasticsearchtemplate有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62397265/
查看ElasticsearchTemplate的API,一些操作显式地将indexName带到-例如:public String delete(String indexName, String typ
我创建了以下配置(我复制了@Lazy,因为我无法使其工作) @Lazy(true) @Configuration public class ElasticConfiguration { priv
我在提取聚合值时遇到问题。 配置是 spring 和 spring-boot-starter-data-elasticsearch。 文档用户在数据库中多次索引。 我想返回字段“commentsCnt
使用 Spring Data 时的ElasticsearchTemplate有一个scroll进行扫描和滚动技术的方法。在 Elasticsearch documentation您可以找到以下信息:
低于错误: 应用程序无法启动 描述: Field template in com.rahul.es.api.service.QueryDSLService required a bean of typ
我刚刚启动了 springboot 并尝试使用 spring-boot 实现 Elasticsearch 但是我在运行 spring-boot 应用程序时遇到了这种类型的错误 Consider def
我的 elasticsearch 上有很多文档。我正在使用 elasticsearchTemplate.queryForList(SearchQuery, class) 根据我的查询获取文档。此查询始
如何使用 Spring Data ElasticSearchTemplate 保存实体?在文档中找不到它。 最佳答案 我相信 index() 是 method for saving an entity
我指的是 Spring Data Elasticsearch org.springframework.data.elasticsearch.core.ElasticsearchRestTemplate
我正在为一个项目使用 spring-data-elasticsearch 来为其提供全文搜索功能。我们将真实数据保存在关系数据库中,并将相关元数据与相应的 id 一起保存在 elasticsearch
我正在尝试使用 MySQL 和 ElasticSearch 实现 Spring MVC 应用程序,但我收到此错误消息。 ERROR ContextLoader - Context initializa
我是一名优秀的程序员,十分优秀!