1

我正在使用 Alfresco CMS 的本地实例,并且正在使用 Apache Chemistry Java CMIS。一切都适用于浏览和创建对象,但是我很难在文档上添加元数据。

他们的源页面代码上有一个示例,说明您需要调用updateProperties. CmisObject不幸的是,这不起作用,我得到的例外是:Property 'my:property' is not valid for this type or one of the secondary types

您知道如何添加自定义属性吗?我是否必须增强现有的方面集合,如果是,我该怎么做?

谢谢。

4

2 回答 2

3

属性“my:property”对此类型或次要类型之一无效

my:property 似乎是一个自定义属性,然后应该使用自定义的 Alfresco 方面进行处理。

如果你想使用 Alfresco 方面,你需要Alfresco OpenCMIS Extension

以下代码片段允许将 Alfresco Extension 与 OpenCMIS 一起使用:

Map<String, String> parameter = new HashMap<String, String>();
// user credentials
parameter.put(SessionParameter.USER, "admin");
parameter.put(SessionParameter.PASSWORD, "admin");

// connection settings
parameter.put(SessionParameter.ATOMPUB_URL, "http://localhost:8080/alfresco/cmisatom");
parameter.put(SessionParameter.BINDING_TYPE, BindingType.ATOMPUB.value());

// set the alfresco object factory
parameter.put(SessionParameter.OBJECT_FACTORY_CLASS, "org.alfresco.cmis.client.impl.AlfrescoObjectFactoryImpl");

// create session
SessionFactory factory = SessionFactoryImpl.newInstance();
Session session = factory.getRepositories(parameter).get(0).createSession();

以下代码允许创建一个包含自定义属性的新文档:

Map<String, Object> properties = new HashMap<String, Object>();
properties.put(PropertyIds.NAME, "doc1");
properties.put(PropertyIds.OBJECT_TYPE_ID, "cmis:document,my:docProps");
properties.put("my:property", "My document");

Document doc = session.getRootFolder().createDocument(properties, null, null);
于 2013-06-21T08:23:00.650 回答
1

应在存储库中定义自定义属性,然后您可以尝试在 CMIS 属性中设置它们。

于 2017-01-05T21:43:36.797 回答