メモ

https://dev.classmethod.jp/articles/aws_s3_getobject_error/

https://docs.aws.amazon.com/ja_jp/AmazonS3/latest/dev/RetrievingObjectUsingJava.html

S3Object object = s3Client.getObject(new GetObjectRequest(bucketName, key));
InputStream objectData = object.getObjectContent();


https://reasonable-code.com/spring-boot-s3/


Gradle のタスク定義のあれこれ - Qiita

                          • -

@RunWith(SpringJUnit4ClassRunner.class)
@ActiveProfiles("dev")
@ContextConfiguration(classes = { PojoConfiguration.class }, initializers = ConfigFileApplicationContextInitializer.class)


https://github.com/spring-projects/spring-boot/issues/6120