【发布时间】:2017-08-19 21:13:30
【问题描述】:
将 Elasticsearch 2.x 升级到 5.x 后,我在 eclipse 中收到以下消息:
The type org.elasticsearch.search.suggest.SuggestBuilder$SuggestionBuilder cannot be resolved. It is indirectly referenced from required .class files
这是来自pom.xml的一些sn-p代码
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.6.RELEASE</version>
</parent>
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>transport</artifactId>
<version>5.5.1</version>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-elasticsearch</artifactId>
</dependency>
【问题讨论】:
标签: java spring maven elasticsearch spring-boot