Spring boot + Spring数据弹性搜索+弹性搜索5.6.0

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring boot + Spring数据弹性搜索+弹性搜索5.6.0相关的知识,希望对你有一定的参考价值。

我正在尝试使用Elastic Search 5.4.1构建一个Spring Boot App(1.5.9.RELEASE),当我运行maven> install时我遇到了这个冲突

failed to run

我的pom.xml是

<properties>
    ...
    <elasticsearch.version>5.4.1</elasticsearch.version>
</properties>
<repositories>
    <repository>
        <id>spring-libs-snapshot</id>
        <name>Spring Snapshot Repository</name>
        <url>http://repo.spring.io/libs-snapshot</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>org.springframework.data</groupId>
        <artifactId>spring-data-elasticsearch</artifactId>
        <version>3.0.0.RC2</version>
    </dependency>
    <dependency>
        <groupId>org.springframework.data</groupId>
        <artifactId>spring-data-elasticsearch</artifactId>
    </dependency>
    <dependency>
        <groupId>org.elasticsearch.client</groupId>
        <artifactId>transport</artifactId>
        <version>5.1.1</version>
    </dependency><dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter</artifactId>
    </dependency><dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <dependency>
        <groupId>org.springframework.data</groupId>
        <artifactId>spring-data-commons-core</artifactId>
        <version>1.0.0.RELEASE</version>
    </dependency>

欢迎任何帮助,谢谢!

答案

这是由于spring-data-elasticsearch,elasticsearch和springboot之间的兼容性问题。 看看这个并相应地改变

https://github.com/spring-projects/spring-data-elasticsearch/wiki/Spring-Data-Elasticsearch---Spring-Boot---version-matrix

以上是关于Spring boot + Spring数据弹性搜索+弹性搜索5.6.0的主要内容,如果未能解决你的问题,请参考以下文章

弹性4j + spring boot 2 + EndpointAutoConfiguration 类未找到异常

如何在弹性beantalk中将PostgreSQL RDS连接到spring boot?

Docker:无法连接到弹性搜索表单spring boot docker image

弹性beantalk上的spring boot应用程序-健康检查失败

aws弹性beantalk上的HTTP到HTTPS不适用于Spring Boot

如何将弹性 4j 重试添加到 spring boot 2 webclient 调用?