您好,我正在使用s3服务,我想在Java项目中移动配置,我的代码如下:
public void init(){
this.awsCredentials = new ProfileCredentialsProvider().getCredentials();
this.s3Client = AmazonS3ClientBuilder.standard().withCredentials(new AWSStaticCredentialsProvider(awsCredentials))
.withRegion(Regions.US_WEST_2).build();
}
在aws文档中,我想在application.properties或资源内使用并从中读取内容,说可以更改默认路径,但是我做不到,请帮我 问候