Example usage for org.springframework.integration.metadata PropertiesPersistingMetadataStore afterPropertiesSet

List of usage examples for org.springframework.integration.metadata PropertiesPersistingMetadataStore afterPropertiesSet

Introduction

In this page you can find the example usage for org.springframework.integration.metadata PropertiesPersistingMetadataStore afterPropertiesSet.

Prototype

@Override
    public void afterPropertiesSet() 

Source Link

Usage

From source file:io.spring.batch.configuration.IntegrationConfiguration.java

@Bean
protected PropertiesPersistingMetadataStore metadataStore() throws Exception {
    PropertiesPersistingMetadataStore store = new PropertiesPersistingMetadataStore();
    store.setBaseDirectory("/tmp/someDirectory");
    store.afterPropertiesSet();

    return store;
}