Estou recebendo o erro No files-cache implementation set ao fazer upload de arquivos usando Apache Commons VFS, implementei o cache, mas quando tenho mais de um diretório de saída com mais de um arquivo o erro ocorre.
if (fileContentInfoFactory == null) {
fileContentInfoFactory = new FileContentInfoFilenameFactory();
}
if (filesCache == null) {
// filesCache = new DefaultFilesCache();
filesCache = new SoftRefFilesCache();
}
if (fileCacheStrategy == null) {
fileCacheStrategy = CacheStrategy.ON_RESOLVE;
}
setupComponent(filesCache);
vfsProvider = new VirtualFileProvider();
setupComponent(vfsProvider);
init = true;