天天看点

SpringCloud Eureka 启动报gson.jar的错

错误信息:

Description:

An attempt was made to call a method that does not exist. The attempt was made from the following location:

    java.lang.invoke.MethodHandleNatives.resolve(Native Method)

The following method did not exist:

    com.google.gson.GsonBuilder.setLenient()Lcom/google/gson/GsonBuilder;

           

版本冲突,引入高版本gson依赖解决:

<dependency>
    <groupId>com.google.code.gson</groupId>
     <artifactId>gson</artifactId>
     <version>2.8.5</version>
</dependency>
           
SpringCloud Eureka 启动报gson.jar的错

继续阅读