Example usage for org.springframework.data.mongodb.gridfs GridFsTemplate GridFsTemplate

List of usage examples for org.springframework.data.mongodb.gridfs GridFsTemplate GridFsTemplate

Introduction

In this page you can find the example usage for org.springframework.data.mongodb.gridfs GridFsTemplate GridFsTemplate.

Prototype

public GridFsTemplate(MongoDbFactory dbFactory, MongoConverter converter, @Nullable String bucket) 

Source Link

Document

Creates a new GridFsTemplate using the given MongoDbFactory and MongoConverter .

Usage

From source file:piecework.config.MongoConfiguration.java

@Bean
public GridFsTemplate gridFsTemplate() throws Exception {
    String bucket = environment.getProperty("mongo.gridfs.bucket");
    return new GridFsTemplate(mongoDbFactory(), mappingMongoConverter(), bucket);
}