无法在alfresco中更新自定义属性特性

无法在alfresco中更新自定义属性特性,alfresco,Alfresco,在Alfresco Share Alfresco 4.2中将特性添加到所需文件夹时出现问题。当我点击管理方面,选择所需的方面,然后保存,一条消息弹出说:“无法更新方面”。 任何帮助都将不胜感激 谢谢 share-config-custom.xml custom-slingshot-application-context.xml.sample web-client-config-custom.xml.sample kb-model.xml kb-model-context.xml 对于在Alfre

在Alfresco Share Alfresco 4.2中将特性添加到所需文件夹时出现问题。当我点击管理方面,选择所需的方面,然后保存,一条消息弹出说:“无法更新方面”。 任何帮助都将不胜感激

谢谢

share-config-custom.xml

custom-slingshot-application-context.xml.sample

web-client-config-custom.xml.sample

kb-model.xml

kb-model-context.xml


对于在Alfresco中创建aspect,有三个主要文件处理aspect

1.在其中定义方面的模型文件

2.从中注入模型文件的上下文文件


3.如果alfresco版本为,则在share config customOr web client config中添加用于可见性的方面。是否添加自定义方面?如果是,则在share config中添加名称,而alfresco的模型文件不是same@Krutik杰斯瓦尔:是的。我正在尝试添加一个新的自定义方面。但是它在共享配置和模型文件中显示了相同的名称。您创建了上下文文件并注入了该模型吗?请告诉我有关您如何创建aspect的详细信息。我创建此博客:我确信您缺少该博客中的某些内容。上传您的文件不仅仅是我能够找到问题。您可以共享确切的文件名吗是模型文件还是上下文文件?
     <aspects>
     <!-- Aspects that a user can see -->
     <visible>
        <aspect name="cm:generalclassifiable" />
        <aspect name="cm:complianceable" />
        <aspect name="cm:dublincore" />
        <aspect name="cm:effectivity" />
        <aspect name="cm:summarizable" />
        <aspect name="cm:versionable" />
        <aspect name="cm:templatable" />
        <aspect name="cm:emailed" />
        <aspect name="emailserver:aliasable" />
        <aspect name="cm:taggable" />
        <aspect name="app:inlineeditable" />
        <aspect name="gd:googleEditable" />
        <aspect name="cm:geographic" />
        <aspect name="exif:exif" />
        <aspect name="audio:audio" />
        <aspect name="cm:indexControl" />
        <aspect name="dp:restrictable" />
        <aspect name="kb:referencable" />
     </visible>

     <!-- Aspects that a user can add. Same as "visible" if left empty -->
     <addable>
     </addable>

     <!-- Aspects that a user can remove. Same as "visible" if left empty -->
     <removeable>
     </removeable>
    </aspects>
 <bean id="webscripts.kb.resources" class="org.springframework.extensions.surf.util.ResourceBundleBootstrapComponent">
  <property name="resourceBundles">
     <list>
        <value>alfresco.messages.knowledgebase</value>
     </list>
  </property>
 </bean>
<config evaluator="aspect-name" condition="kb:referencable">
     <property-sheet>
         <show-property name="kb:documentRef"/>
    </property-sheet>
</config>
<config evaluator="string-compare" condition="Action Wizards">
    <aspects>
        <aspect name="my:docProps" />
    </aspects>
</config>
<aspects>
  <!-- Definition of new Content Aspect: Knowledge Base Document -->
  <aspect name="kb:referencable">
     <title>Knowledge Base Referencable</title>
     <properties>
        <property name="kb:documentRef">
           <type>d:text</type>
        </property>
     </properties>
  </aspect>
 </aspects>
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans>
<!-- Registration of new models -->
<bean id="extension.kb.dictionaryBootstrap" parent="dictionaryModelBootstrap" depends-on="dictionaryBootstrap">
    <property name="models">
        <list>
            <value>alfresco/extension/kb-model.xml</value>
        </list>
    </property>
</bean>

 <bean id="extension.kb.resourceBundle"   class="org.alfresco.i18n.ResourceBundleBootstrapComponent">
   <property name="resourceBundles">
      <list>
         <value>alfresco.messages.knowledgebase</value>
      </list>
   </property>
</bean>
</beans>
<?xml version="1.0" encoding="UTF-8"?>
<model name="model1:ExtensionModel"  xmlns="http://www.alfresco.org/model/dictionary/1.0" >
    <description>Extension model</description>
    <author>Krutik Jayswal</author>
    <version>1.0</version>
    <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"/>
    </imports>
    <namespaces>
        <namespace uri="http://www.model.com/model/model/1.0" prefix="m1"/>
    </namespaces>
    <data-types/>
    <constraints/>
    <aspects>
        <aspect name="m1:metadata1">
            <title>Meta data 1</title>
            <properties>
                <property name="m1:Solution">
                    <title>Solution</title>
                    <type>d:text</type>
                    <mandatory>false</mandatory>
                    <index enabled="true">
                        <atomic>true</atomic>
                        <stored>true</stored>
                        <tokenised>TRUE</tokenised>
                    </index>
                </property>
            </properties>
        </aspect>
    </aspects>
</model>
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
    <beans>

        <!-- Registration of new models -->    
        <bean id="extension.dictionaryBootstrap" parent="dictionaryModelBootstrap" depends-on="dictionaryBootstrap">
            <property name="models">
                <list>
                    <value>alfresco/extension/extCustomModel.xml</value><!--This is path till model file.alfresco directory will be inside tomcat/shared classes/**alfresco**-->
                </list>
            </property>
        </bean>

    </beans>
<config evaluator="string-compare" condition="DocumentLibrary">

         <aspects>

             <visible>

                <aspect name="m1:metadata1" />

             </visible>

         </aspects>

   </config>