java.lang.NoSuchFieldError: INSTANCE at com.amazonaws.http.conn.SdkConnectionKeepAliveStrategy.ge

来源:互联网 发布:蜂窝移动数据设置 编辑:程序博客网 时间:2024/06/13 22:53
在测试aws的s3本地测试的时候会遇到这样的错误:
java.lang.NoSuchFieldError: INSTANCE   at com.amazonaws.http.conn.SdkConnectionKeepAliveStrategy.getKeepAliveDuration(SdkConnectionKeepAliveStrategy.java:48)
此错误主要是httpclient包与aws内置的jar有冲突导致的,在pom.xml中添加对应的jar即可
<dependency>    <groupId>org.apache.httpcomponents</groupId>    <artifactId>httpcore</artifactId>    <version>4.4</version></dependency><dependency>    <groupId>org.apache.httpcomponents</groupId>    <artifactId>httpclient</artifactId>    <version>4.4</version></dependency>

0 0