如何使用Apache Chemistry在对象上创建自定义属性

时间:2013-06-20 14:58:04

标签: cmis opencmis apache-chemistry

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

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

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

感谢。

2 个答案:

答案 0 :(得分:3)

  

属性'my:property'对此类型或其中一种辅助类型无效

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

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

以下代码片段允许将Alfresco扩展与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);

答案 1 :(得分:0)

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