java.lang.NoSuchMethodError: com.google.gson.JsonObject.keySet()Ljava/util/S

2,038 阅读1分钟
  • 在使用阿里短信服务API时报错。报错信息如下
java.lang.NoSuchMethodError: com.google.gson.JsonObject.keySet()Ljava/util/S 
  • 官方帮助文档给出的解决办法
https://help.aliyun.com/document_detail/55359.html?spm=a2c4g.11186623.2.16.34705777x7OHeD
  • 升级下核心类库的版本就可以了
    <dependency>
      <groupId>com.aliyun</groupId>
      <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
      <version>1.1.0</version>
    </dependency>
    <dependency>
      <groupId>com.aliyun</groupId>
      <artifactId>aliyun-java-sdk-core</artifactId>
      <version>4.4.3</version> -- 升级版本
    </dependency>