我想将所有alfresco存储库内容从一个存储库迁移到另一个存储库。但我不想要现有的文件夹结构。 迁移时我必须根据一些业务需求验证内容,并且基于内容类型,我必须在新的存储库中创建不同的文件夹结构。
之前是否有人这样做过。 请帮忙。
提前致谢...
答案 0 :(得分:1)
好的,我给出的解决方案不是最好的解决方案,但我认为它会起作用,我们将从一个简单的文档开始,看看它是否有效(我们将修改答案)
获取文档的inputStram
我认为这是最重要的部分
public InputStream getTheInputStream () {
Document newDocument = (Document) getSession(serverURL, userName, password).getObject(path);
ContentStream cs = newDocument.getContentStream(null);
return cs.getStream();
}
将inputStram从服务器A移动到服务器B
public void transfert() throws FileNotFoundException, IOException {
Session sessionB = getSession(serverUrlB, usernameB, passwordB);
//////////////////////////// GET THE FOLDER THAT YOU WILL WORK WITH
Folder root = sessionB.getRootFolder();
//////////////////////////// GET THE FOLDER THAT YOU WILL WORK WITH
File newfile = new File(fileName);
String nom = fileName;
Map<String, Object> properties = new HashMap<>();
properties.put(PropertyIds.OBJECT_TYPE_ID, BaseTypeId.CMIS_DOCUMENT.value());
properties.put(PropertyIds.NAME, nom);
List<Ace> addAces = new LinkedList<>();
List<Ace> removeAces = new LinkedList<>();
List<Policy> policies = new LinkedList<>();
String extension = FilenameUtils.getExtension(nom);
ContentStream contentStream = new ContentStreamImpl("content." + extension, BigInteger.valueOf(nom).length()),
new MimetypesFileTypeMap().getContentType(newfile), (theInputStream);
Document dc = root.createDocument(properties, contentStream, VersioningState.MAJOR, policies, addAces, removeAces, sessionB.getDefaultContext());
}
尝试使用此方法并告诉我它是否正常工作,如果您没有getSession方法,请查看此帖子get session method。