我正试图使用化学CMIS创建一个文档,如下所示
final Map<String, Object> reportProps = new HashMap<String, Object>();
reportProps.put(PropertyIds.OBJECT_TYPE_ID, "cmis:document");
reportProps.put(PropertyIds.NAME,file.getName());
session.getFolder().createDocument(reportProps, contentStream, VersioningState.MAJOR);
如果具有相同名称的文档已经存在,它将抛出CmisContentAlreadyExistsException。
如果引发此异常,我希望创建文档的新版本。
或者,有没有一种方法可以让我使用Chemistry CMIS检查具有给定名称的文档是否已经存在于Alfresco存储库中,这样我无论如何都可以获取该文档,并使用新版本签入该文档。
欢迎采取任何其他方法。
我通常会检查文档是否已经存在,如果存在,我会进行更新。我不赞成签出/签入过程,因为我设置Alfresco为每次更新创建版本(但我想这两种方法都可以)。
我对CMIS没有太多经验,但我确实记得这篇文章谈论过您的用例。
http://ecmarchitect.com/archives/2013/08/26/3528
Document document = null;
try {
document = parentFolder.createDocument(props, contentStream, null);
System.out.println("Created new document: " + document.getId());
} catch (CmisContentAlreadyExistsException ccaee) {
document = (Document) cmisSession.getObjectByPath(parentFolder.getPath() + "/" + fileName);
System.out.println("Document already exists: " + fileName);
}
return document;