IDE中Gson冲突解决

Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2019-01-22 17:03:27.514 ERROR 6220 --- [           main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
APPLICATION FAILED TO START
***************************

Description:

An attempt was made to call the method com.google.gson.GsonBuilder.setLenient()Lcom/google/gson/GsonBuilder; but it does not exist. Its class, com.google.gson.GsonBuilder, is available from the following locations:

    jar:file:/D:/Program%20Files%20(x86)/maven3.6.0/repository/com/google/code/gson/gson/2.1/gson-2.1.jar!/com/google/gson/GsonBuilder.class

It was loaded from the following location:

    file:/D:/Program%20Files%20(x86)/maven3.6.0/repository/com/google/code/gson/gson/2.1/gson-2.1.jar


Action:

Correct the classpath of your application so that it contains a single, compatible version of com.google.gson.GsonBuilder


Process finished with exit code 1

 

 

 

解决方法:


    
        org.springframework.cloud
        spring-cloud-starter-netflix-eureka-server
    
        
            com.google.code.gson
            gson
        
    

你可能感兴趣的:(工具,Maven工程)