I am currently looking at bootstrapping my content model and live search within my project. I am using the AIO sample project for reference as well.
Can you please tell me what is the purpose of the DemoComponent below? I dont seem to need the below bean for bootstrapping my content model and live search files. My customizations seem to work fine without the DemoComponent. What is the purpose of such a component and when do you use it in your projects?
<bean id="com.mycomp.alfresco.DemoComponent" class="com.mycomp.alfresco.platformsample.DemoComponent" parent="module.baseComponent" >
<property name="moduleId" value="alfresco-bootstrap-platform-jar" /> <!-- See module.properties -->
<property name="name" value="DemoComponent" />
<property name="description" value="A demonstration component" />
<property name="sinceVersion" value="1.0" />
<property name="appliesFromVersion" value="0.99" /> <!-- 1.0 would not work here when using SNAPSHOT version in project -->
<property name="nodeService" ref="NodeService" />
<property name="nodeLocatorService" ref="nodeLocatorService" />
A component (or rather "ModuleComponent" as the interface is called) is a logic component that Alfresco will run when starting / initialising a "module", i.e. the state of an addon / extension built using the SDK or other means. It can be used to bootstrap content structures that the extension requires for operation, or load some external data into memory... The most commonly used module component is the ImporterModuleComponent which allows boostrapping content / node structures.
I find it to be bad style that the SDK always generates projects with those dummy components, because very few people actually delete those and it just adds a bit of garbage (harmless) to the system.
Ask for and offer help to other Alfresco Content Services Users and members of the Alfresco team.
Related links:
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.