List of usage examples for org.springframework.integration.metadata PropertiesPersistingMetadataStore setBaseDirectory
public void setBaseDirectory(String baseDirectory)
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();// www. j a va2 s .c o m return store; }