Spring AWS cloud code does not find S3 file

I do not understand why Spring AWS cloud code does not find my S3 file. I have "aws-context: context-resource-loader" in my Spring bean xml configuration. I would think that using the s3: resources would be as simple as Spring's classpath resource: easy to use.

I know that AWS permissions and credentials are configured correctly because I can get the file in question if I use AmazonS3Client directly.

On the Spring side, AWS credentials should be found automatically.

Here's the working code for the Amazon S3 client:

public static void main(String [] args) throws IOException {
  AmazonS3 s3Client = new AmazonS3Client(new DefaultAWSCredentialsProviderChain());
  System.out.println(s3Client.doesObjectExist("MyBucket", "sample/resource.txt"));
  S3Object object = s3Client.getObject(new GetObjectRequest("MyBucket", "sample/resource.txt"));
  String result = StreamUtils.copyToString(object.getObjectContent(), Charset.forName("UTF-8"));
  System.out.println(result);    
}

Here is the equivalent of Cloud AWS Spring that does not find the same S3 file:

public class App {
    public static void main(String[] args) throws IOException {
        final AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext("app-context.xml");
        ctx.scan("bdf.sample.spring");
        S3Resource s3Resource = ctx.getBean("S3Resource", S3Resource.class);
        InputStream resource = s3Resource.getResource("s3://MyBucket/sample/resource.txt");
        String result = StreamUtils.copyToString(resource, Charset.forName("UTF-8"));
        System.out.println(result);
    }
}

I have System.out.println in the S3Resource constructor that shows this ResourceLoader:

org.springframework.context.annotation.AnnotationConfigApplicationContext

, , :

"main" java.io.FileNotFoundException: [s3://MyBucket/sample/resource.txt] ,

S3Resource:

package bdf.sample.spring;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.Resource;
import org.springframework.core.io.ResourceLoader;
import org.springframework.stereotype.Service;
import java.io.IOException;
import java.io.InputStream;

@Service("S3Resource")
public class S3Resource  {
    private final ResourceLoader resourceLoader;

    @Autowired
    public S3Resource(ResourceLoader resourceLoader) {
        this.resourceLoader = resourceLoader;
        System.out.println(resourceLoader.getClass());
    }
    public InputStream getResource(String path) throws IOException {
        final Resource resource = resourceLoader.getResource(path);
        return resource.getInputStream();
    }
}

, , Spring XML

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:aws-context="http://www.springframework.org/schema/cloud/aws/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/cloud/aws/context
        http://www.springframework.org/schema/cloud/spring-cloud-aws-context.xsd">

    <aws-context:context-resource-loader/>
    <aws-context:context-region region="us-east-1"/>
</beans>

github : https://github.com/BDF/SpringCloudSample

+4

All Articles