我需要在alfresco上创建一个类似sql表的模型

时间:2018-02-15 20:41:52

标签: alfresco alfresco-share alfresco-webscripts alfresco-maven

我需要为仅包含字段id,城市名称的城市创建模型,如sql表,但不创建不继承任何Alfresco模型的文件(内容,文件夹等)。我能做到吗?或者必须继承Alfresco模型

3 个答案:

答案 0 :(得分:2)

通过查看 sys:base (根对象)的定义:

<type name="sys:base">
  <title>Base</title>
  <mandatory-aspects>
    <aspect>sys:referenceable</aspect>
    <aspect>sys:localized</aspect>
  </mandatory-aspects>
</type>

我想说应该可以创建一个不继承某种类型的类型。

但最好的机会是尝试。

无论如何,您都可以继承 sys:base

答案 1 :(得分:1)

您可以使用这样的数据列表来实现这一目标。

<description>Cities Data List Content model</description>
<version>1.0</version>

<imports>
    <!-- Import Alfresco Dictionary Definitions -->
    <import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d"/>
    <!-- Import Alfresco Content Domain Model Definitions -->
    <import uri="http://www.alfresco.org/model/content/1.0" prefix="cm"/>
    <!-- Import Alfresco Data List Model Definitions -->
    <import uri="http://www.alfresco.org/model/datalist/1.0"   prefix="dl" />
</imports>


<namespaces>
    <namespace uri="<<Your uri>>" prefix="cities"/>
</namespaces>

<types>
    <!--
        Data List Item Type for the custom cities list
        -->
    <type name="cities:cityListItem">
        <title>Cities List Item</title>
        <parent>dl:dataListItem</parent>
        <properties>
            <property name="cities:cityName">
                <type>d:text</type>
                <mandatory>true</mandatory>
            </property>
            <property name="cities:cityID">
                <type>d:int</type>
                <mandatory>true</mandatory>
            </property>
            <property name="cities:cityDescription">
                <type>d:text</type>
            </property>

        </properties>

    </type>
</types>

您可以稍后添加与此数据列表相关的更多自定义,如您在此处所示: https://docs.alfresco.com/5.1/references/dev-extension-points-data-lists.html

答案 2 :(得分:0)