We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f70260d commit f85ca1fCopy full SHA for f85ca1f
README.md
@@ -33,7 +33,7 @@ Declare a spring bean `S3PropertyPlaceholderConfigurer` using yours AWS credenci
33
@Bean
34
S3PropertyPlaceholderConfigurer s3PropertyPlaceholderConfigurer(AmazonS3 s3) {
35
S3PropertyPlaceholderConfigurer s3PropertyPlaceholderConfigurer = new S3PropertyPlaceholderConfigurer(s3);
36
- s3PropertyPlaceholderConfigurer.setS3Locations(new String[]{"s3://my-bucket/my-folder/my-properties.properties"});
+ s3PropertyPlaceholderConfigurer.setS3Locations("s3://my-bucket/my-folder/my-properties.properties");
37
38
return s3PropertyPlaceholderConfigurer;
39
}
0 commit comments