List of usage examples for org.springframework.integration.metadata PropertiesPersistingMetadataStore PropertiesPersistingMetadataStore
PropertiesPersistingMetadataStore
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();//from w ww.ja va2s.co m return store; }