2

我的模型如下所示:

我有两个文件夹(HTML)和(图像)。大量文件被插入到 images 文件夹中,我试图实现的业务用例的一小部分是,当客户要求说 chapter1.html 时,应该从 Alfresco 存储库中获取该 chapter1.html 的所有关联图像并发送。

我正在使用 CMIS,并且能够完成它提供的大部分内容。我已经阅读了大部分教程和代码片段,并且可以通过这种方式创建关系:

https://anonsvn.springframework.org/svn/se-surf/branches/DEV_CMIS_2/sandbox/spring-cmis/spring-cmis-test/src/main/java/org/springframework/extensions/cmis/test/CmisCreateTest。爪哇

  1. testCreateRelationship(): 工作正常,但当 getRelationships() 调用并在 Context 上设置 setIncludeRelationships 时再次返回空。

  2. testBelarus():它不起作用并引发以下异常(org.apache.chemistry.opencmis.commons.exceptions.CmisInvalidArgumentException:错误请求)。

我使用了“关系”部分http://chemistry.apache.org/java/developing/guide.html中给出的代码片段 ,并成功创建了它,但再次发现很难获取该特定 HTML 的引用图像

请提出一些解决方案,因为这是阻止我去 Alfresco 的唯一原因。

如果我以错误的方式进行操作(创建关系)并且有更好的解决方案满足我的要求(使用自定义模型/alfcmis:nodeRef/cmiscustom:docprop_string 等),请提出建议。

任何帮助表示赞赏。

谢谢

4

1 回答 1

3

粘贴来自 testCreateRelationship() 的代码,最后添加一些代码,演示如何获取关系并将它们打印到控制台(听起来你尝试这种方式没有运气?下面的代码无论如何都适用于我的 repo):

public void testCreateRelationship()
{
    Session session = createSession();
    Folder root = session.getRootFolder();

    Map<String,String> newFolderProps = new HashMap<String, String>();
    newFolderProps.put(PropertyIds.OBJECT_TYPE_ID, "cmis:folder");
    String name = "testCreateRelationship " + System.currentTimeMillis();
    newFolderProps.put(PropertyIds.NAME, name);
    Folder folder = root.createFolder(newFolderProps, null, null, null, session.getDefaultContext());
    System.out.println(folder.getName());

    Map<String,String> newDocProps1 = new HashMap<String, String>();
    newDocProps1.put(PropertyIds.OBJECT_TYPE_ID, "D:cmiscustom:document");
    newDocProps1.put(PropertyIds.NAME, "Test Doc 1");
    ContentStream contentStream1 = new ContentStreamImpl("xyz.txt", null, "plain/text", new ByteArrayInputStream("some content".getBytes()));
    Document doc1 = folder.createDocument(newDocProps1, contentStream1, VersioningState.MAJOR, null, null, null, session.getDefaultContext());

    Map<String,String> newDocProps2 = new HashMap<String, String>();
    newDocProps2.put(PropertyIds.OBJECT_TYPE_ID, "D:cmiscustom:document");
    newDocProps2.put(PropertyIds.NAME, "Test Doc 2");
    ContentStream contentStream2 = new ContentStreamImpl("xyz.txt", null, "plain/text", new ByteArrayInputStream("some content".getBytes()));
    Document doc2 = folder.createDocument(newDocProps2, contentStream2, VersioningState.MAJOR, null, null, null, session.getDefaultContext());

    Map<String, Serializable> relProps = new HashMap<String, Serializable>(); 
    relProps.put("cmis:sourceId", doc1.getId()); 
    relProps.put("cmis:targetId", doc2.getId()); 
    relProps.put("cmis:objectTypeId", "R:cmiscustom:assoc");
    session.createRelationship(relProps, null, null, null);

    // create a OperationContext that fetches relationships on both ends...
    OperationContext operationContext = new OperationContextImpl();
    operationContext.setIncludeRelationships(IncludeRelationships.BOTH);


    CmisObject object = session.getObject(doc1,operationContext);


    List<Relationship> relationships = object.getRelationships();
    for (Relationship rel : relationships){
        System.out.println("relation: "+ rel.getName());
    }
}
于 2013-01-28T20:28:36.347 回答