JetS3t:Amazon S3:如何动态更改端点
我的理解是,在 Jets3t 0.7.4 之前,S3 端点是在 S3Service::setS3EndpointHost 静态设置的。因此,无法使用 Jets3t 在同一应用程序中使用不同的 S3 端点来获取/放置内容到 S3。
在 Jets3t 0.7.4 发行说明中写道 - “S3Service 中已弃用用于生成签名 URL 的静态方法。从现在开始应使用新的非静态方法等效项,以避免依赖于 VM 范围的 S3 端点常量。”
现在可以动态更改 S3 端点吗?如果是,该怎么做..是否有可用的 setS3Endpoint 方法?
My understanding is that before Jets3t 0.7.4 S3 endpoint was set statically at S3Service::setS3EndpointHost. So there was no way to use Jets3t to Get/Put content to S3 using different S3 endpoints in same application.
In Jets3t 0.7.4 release notes it's written -
"Deprecated static methods in S3Service for generating signed URLs. The new non-static method equivalents should be used from now on to avoid dependency on a VM-wide S3 endpoint constant."
Is it possible now to change S3 endpoints dynamically ? If yes how to do it.. is there a setS3Endpoint method available ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以这样设置:
You can set it like this:
jets3t api中没有这样的方法。端点在 Jets3t.properties 文件中设置。您可以(理论上)引入 Jets3t.properties 文件并使用 Java 中的帮助程序类对其进行更改,然后创建一个新的 s3Service 对象,希望该对象具有新的配置。
There is no such method in the jets3t api. The endpoint is set in the Jets3t.properties file You could (theoretically) pull in the Jets3t.properties file and change it with a helper class in Java, then create a new s3Service object that hopefully has the new config.