更改.aws配置文件springboot

时间:2019-12-10 16:27:09

标签: spring-boot amazon-s3

您好,我正在使用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或资源内使用并从中读取内容,说可以更改默认路径,但是我做不到,请帮我 问候

0 个答案:

没有答案