Spring Boot - can't start with embedded tomcat error

com.fasterxml.jackson.core版本问题,更新最新版本即可。

I had the same problem, it seems that:

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.9.0</version>
</dependency>

had dependency to jackson-annotations in version 2.8.0 which crashed somehow with my other jackson dependencies.

after modifying the dependency as follows:

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <exclusions>
        <exclusion>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-annotations</artifactId>
        </exclusion>
    </exclusions>
</dependency>

and adding explicit dependency on:

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-annotations</artifactId>
    <version>2.9.0</version>
</dependency>

problem was solved for me :)

https://stackoverflow.com/questions/43701983/spring-boot-cant-start-with-embedded-tomcat-error

猜你喜欢

转载自www.cnblogs.com/williamjie/p/9242333.html