INT-1527, fixed the directory path

This commit is contained in:
Oleg Zhurakousky
2010-10-17 23:03:27 -04:00
parent bf81955686
commit 903e8846e8

View File

@@ -37,7 +37,7 @@ public class FileBasedPropertiesStore implements MetadataStore {
public FileBasedPropertiesStore(String key){
this.key = key;
String dirPath = System.getProperty("java.io.tmpdir") + "spring-integration/";
String dirPath = System.getProperty("java.io.tmpdir") + "/spring-integration/";
String fileName = this.key + ".last.entry";
File baseDir = new File(dirPath);
baseDir.mkdirs();