上传阿里云OSS[ErrorCode]: UnknownHost [RequestId]: Unknown报错问题
可以更换oss的版本,我的版本为最新版:
<dependency>
<groupId>com.aliyun.oss</groupId>
<artifactId>aliyun-sdk-oss</artifactId>
<version>3.10.2</version>
</dependency>
applicaiton.yml配置文件应使用:
aliyun:
oss:
endpoint: xxx
keyid: xxx
keysecret: xx
#bucket可以在控制台创建,也可以使用java代码创建
bucketname: xx
而不是
aliyun:
oss:
file:
endpoint: xxx
keyid: xxx
keysecret: xx
#bucket可以在控制台创建,也可以使用java代码创建
bucketname:xx
含有file,有些低版本则支持file。
<dependency>
<groupId>com.aliyun.oss</groupId>
<artifactId>aliyun-sdk-oss</artifactId>
<version>3.10.2</version>
</dependency>
applicaiton.yml配置文件应使用:
aliyun:
oss:
endpoint: xxx
keyid: xxx
keysecret: xx
#bucket可以在控制台创建,也可以使用java代码创建
bucketname: xx
而不是
aliyun:
oss:
file:
endpoint: xxx
keyid: xxx
keysecret: xx
#bucket可以在控制台创建,也可以使用java代码创建
bucketname:xx
含有file,有些低版本则支持file。