본문 바로가기
정보기술/웹&데이터베이스

Alfresco Customization for Custom Content Type

by fermi 2010. 12. 4.
1. Add New Content Model
http://ecmarchitect.com/archives/2007/06/09/756

2. Add New Mimetype
http://wiki.alfresco.com/wiki/Adding_a_Mime_Type
http://niketa-alfresco3.blogspot.com/2010/01/how-to-add-new-mime-type.html

3. Bug Fix
주의: mimetype 확장 버그
http://issues.alfresco.com/jira/browse/ALF-2695

Looks like this:

<bean id="mimetypeConfigService" class="org.alfresco.config.xml.XMLConfigService" init-method="init">
        <constructor-arg>
            <bean class="org.alfresco.config.source.UrlConfigSource">

Should probably be changed to:

<bean id="mimetypeConfigService" class="org.springframework.extensions.config.xml.XMLConfigService" init-method="init">
        <constructor-arg>
            <bean class="org.springframework.extensions.config.source.UrlConfigSource">