您的位置:首页 > 游戏 > 游戏 > html制作简单的个人网页代码_免费ppt生成器_2023年6月疫情恢复_做一个企业网站需要多少钱

html制作简单的个人网页代码_免费ppt生成器_2023年6月疫情恢复_做一个企业网站需要多少钱

2024/12/22 15:51:39 来源:https://blog.csdn.net/rookiesx/article/details/144394889  浏览:    关键词:html制作简单的个人网页代码_免费ppt生成器_2023年6月疫情恢复_做一个企业网站需要多少钱
html制作简单的个人网页代码_免费ppt生成器_2023年6月疫情恢复_做一个企业网站需要多少钱

背景

在产品环境上通过 http 的方式访问 aws s3 是不安全的,需要使用aws sdk 提供的接口来访问

技术实现

项目中使用的是java

1. 在gradel 中引用对应的aws 包

implementation ‘software.amazon.awssdk:s3:2.20.80’ // aws sdk
implementation ‘software.amazon.awssdk:sts:2.20.0’

2. 在gradel 中引用对应的aws 包

需要使用S3 Client 来向aws s3 发起请求,为了避免重复创建Client 冗余对象,创建工厂类来管理对应的 S3 Client 对象。扩展性也大幅提高。
此外,由于每一个Client 对象是一个单一的Region,需要不同的aws cluster_region 。

public class S3ClientFactory {private static final Map<String, S3Client> clients = new ConcurrentHashMap<>();public static S3Client getClient(Region region) {return clients.computeIfAbsent(region.toString(), r -> S3Client.builder().region(Region.of(r)).build());}public static String getCsvContent(String bucketName, String objectKey, String configKey) {// Create S3 ClientsS3Client s3Stg = S3ClientFactory.getClient(Region.US_WEST_2);    // stageS3Client s3ProdNa = S3ClientFactory.getClient(Region.US_EAST_1); // prod NA// Select the appropriate S3 client based on configKeyS3Client s3 = selectClient(configKey, s3Stg, s3ProdNa);// Prepare the GetObject requestGetObjectRequest getObjectRequest = GetObjectRequest.builder().bucket(bucketName).key(objectKey).build();// Fetch the object and read the content into a Stringtry (ResponseInputStream<?> response = s3.getObject(getObjectRequest);BufferedReader reader = new BufferedReader(new InputStreamReader(response))) {// Collect all lines into a single stringreturn reader.lines().collect(Collectors.joining("\n"));} catch (S3Exception e) {throw new CustomException("Failed to get AWS CSV by bucket and objectKey: " + e.awsErrorDetails().errorMessage(), e.getMessage());} catch (IOException e) {throw new CustomException("Error processing CSV content from AWS S3: " + e.getMessage(), e.getMessage());}}private static S3Client selectClient(String configKey, S3Client s3Stg, S3Client s3ProdNa) {if (configKey.contains("prod")) {return s3ProdNa; // Assuming s3ProdNa is used for NA and SA} else {return s3Stg; // Default to stage}}
}

展望

搞清楚 aws sdk 权限,access_api key,访问通信原理

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com