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



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

在他们的源代码中有一个例子,说你需要在CmisObject上调用updateProperties。不幸的是,这不起作用,我得到的异常说明:Property 'my:property' is not valid for this type or one of the secondary types

你知道如何添加自定义属性吗?我是否需要增强现有的方面集合?如果需要,我该如何做?

谢谢。

属性'my: Property '对于此类型或次要类型之一无效

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

如果你想使用Alfresco方面,你将需要Alfresco OpenCMIS扩展

下面的代码片段允许使用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);

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

相关内容

  • 没有找到相关文章