标签: amazon-web-services amazon-s3 credentials
// this.s3Client = new AmazonS3Client(new ProfileCredentialsProvider()); this.s3Client = new AmazonS3Client();
如果我取消注释第一行,我的项目构建失败,说它无法识别包(com.amazonaws.auth.profile)并且它在ProfileCredentialsProvider()遇到错误。
但如果我使用第二行,一切都还可以。为什么会这样?