动态部署时内容模型失败

时间:2017-08-29 16:45:39

标签: alfresco alfresco-webscripts alfresco-maven

我将这个contentModel文件放在alfresco模型库中。

<?xml version="1.0" encoding="UTF-8"?>
<model name="swTl:TresCompletModel" xmlns="http://www.alfresco.org/model/dictionary/1.0">
    <imports>
      <import uri="http://www.alfresco.org/model/dictionary/1.0" prefix="d"/>
      <import uri="http://www.alfresco.org/model/content/1.0" prefix="cm"/>
      <import uri="http://www.alfresco.org/model/bpm/1.0" prefix="bpm"/>
    </imports>

     <namespaces>
            <namespace uri="starxpert.TresCompletModel.fr" prefix="swTl"/>
      </namespaces>

      <types>
            <type name="swTl:debut">
            <parent>bpm:activitiOutcomeTask</parent>
               <properties>
                 <property name="swTl:dateDebut">
                     <title>Date de debut de vaccances</title>
                     <type>d:date</type>
                     <mandatory>true</mandatory>
                 </property>

                <property name="swTl:dateFin">
                   <title>Date fin de vaccances</title>
                   <type>d:date</type>   
                   <mandatory>true</mandatory>                                                   
                </property>
               </properties>
             </type>  
       </types>
<model>

我尝试通过将model active属性设置为true来动态部署此模型,但我仍然在露天日志中收到此错误:

2017-08-29 18:13:57,528  ERROR [extensions.webscripts.AbstractRuntime] [http-bio-8080-exec-29] Exception from executeScript: 07290005 Failed to parse model

org.alfresco.service.cmr.dictionary.DictionaryException: 07290005 Failed to parse model

Caused by: org.jibx.runtime.JiBXException: Expected "{http://www.alfresco.org/model/dictionary/1.0}model" end tag, found "{http://www.alfresco.org/model/dictionary/1.0}model" start tag (line 80, col 61)

以前是否有人这样做过?谢谢你的任何发言。

1 个答案:

答案 0 :(得分:2)

不应该使用</model>来结束模型,而不是<model>

相关问题