作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用此文档自动配置Elasticsearch高级Rest客户端
https://docs.spring.io/spring-boot/docs/current/reference/html/spring-boot-features.html#boot-features-elasticsearch
我在application.properties中添加了以下属性:
spring.elasticsearch.rest.uris=https://hostname.com
spring.elasticsearch.rest.read-timeout=10s
spring.elasticsearch.rest.username= user
spring.elasticsearch.rest.password= password
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>${elasticsearch.version}</version>
</dependency>
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>elasticsearch-rest-client</artifactId>
<version>${elasticsearch.version}</version>
</dependency>
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>elasticsearch-rest-high-level-client</artifactId>
<version>${elasticsearch.version}</version>
</dependency>
<elasticsearch.version>7.2.1</elasticsearch.version>
@Configuration
@EnableAutoConfiguration
@SpringBootApplication
@ComponentScan
public class MainClass {
public static void main(String[] args) {
SpringApplication.run(MainClass.class, args);
}
}
@Autowired
private RestHighLevelClient client;
最佳答案
您应该为NullPointerException
添加stacktrace。
您没有编写使用的版本(Spring Boot,Spring Data Elasticsearch)。但是当前的Spring Boot 2.2.2针对使用Elasticsearch 6.8.5的Spring Data Elasticsearch3.2.x。因此,这不适用于Elasticsearch 7集群。下一版本(Spring Data Elasticsearch 4.0)将提供对Elasticsearch 7的支持。
关于spring-boot - ElasticSearchHighLevelClient springboot自动配置不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59431917/
我正在尝试使用此文档自动配置Elasticsearch高级Rest客户端 https://docs.spring.io/spring-boot/docs/current/reference/html/
我是一名优秀的程序员,十分优秀!