Package org.springframework.data

Examples of org.springframework.data.S3FileStorage


    @Inject
    private Environment environment;

    @Bean
    public FileStorage pictureStorage() {
      return new S3FileStorage(environment.getProperty("s3.accessKey"), environment.getProperty("s3.secretKey"), "images.greenhouse.springsource.org");
    }
View Full Code Here

TOP

Related Classes of org.springframework.data.S3FileStorage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.