我正在尝试通过Spring Boot设置文件上传REST API。
我目前有一个list / GET方法curl http://localhost:8080/api/aws/s3/list
,它返回当前存在于存储桶中的对象列表。
上传时,我一直在尝试:
curl -F "data=@test.txt" http://localhost:8080/api/aws/s3/upload -i
产生:
HTTP/1.1 100 Continue
HTTP/1.1 200 OK
Date: Sun, 25 Jun 2017 23:28:36 GMT
X-Application-Context: application
Content-Type: application/json;charset=utf-8
Transfer-Encoding: chunked
但是当我看到这个桶时,它还没有使用新文件进行更新。
这会是AWS上的权限问题吗?只有我的帐户具有读写权限。我创建的用户和组具有管理员权限。我没有添加Bucket Policy。这是我的CORS配置:
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<AllowedMethod>POST</AllowedMethod>
<AllowedMethod>DELETE</AllowedMethod>
<MaxAgeSeconds>3000</MaxAgeSeconds>
<AllowedHeader>Authorization</AllowedHeader>
</CORSRule>
</CORSConfiguration>
这是我在春季的S3控制器的上传部分:
@RequestMapping(value = "/upload", method = RequestMethod.POST)
public List<PutObjectResult> upload(@RequestParam("file") MultipartFile[] multipartFiles) {
return s3Wrapper.upload(multipartFiles);
}
答案 0 :(得分:8)
您应该为S3指定使用的存储桶名称和一些参数。我想这是PUT,而不是POST。互联网上有几个命令行样本。
file=/path/to/file/to/upload.tar.gz
bucket=your-bucket
resource="/${bucket}/${file}"
contentType="application/x-compressed-tar"
dateValue=`date -R`
stringToSign="PUT\n\n${contentType}\n${dateValue}\n${resource}"
s3Key=xxxxxxxxxxxxxxxxxxxx
s3Secret=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
signature=`echo -en ${stringToSign} | openssl sha1 -hmac ${s3Secret} -binary | base64`
curl -X PUT -T "${file}" \
-H "Host: ${bucket}.s3.amazonaws.com" \
-H "Date: ${dateValue}" \
-H "Content-Type: ${contentType}" \
-H "Authorization: AWS ${s3Key}:${signature}" \
https://${bucket}.s3.amazonaws.com/${file}
答案 1 :(得分:2)
&charString_1 + 1
答案 2 :(得分:0)
这是因为我在控制器中设置的参数是file
,但在我的卷曲路线中,我一直使用data