信鸽推送在springboot中出现jar包冲突问题

错误提示 :

java.lang.NoSuchMethodError: org.json.JSONObject.put(Ljava/lang/String;Ljava/util/Collection;)Lorg/json/JSONObject;

 

解决方案,排除冲突包


  org.springframework.boot
  spring-boot-starter-test
  test
  
    
      com.vaadin.external.google
      android-json
    
  



  org.springframework.boot
  spring-boot-configuration-processor
  true
  
    
      com.vaadin.external.google
      android-json
    
  

你可能感兴趣的:(信鸽推送在springboot中出现jar包冲突问题)