A developer wants to extend AEM Core Components to create a custom Carousel Component.
How should the developer extend the Core Components?
A developer wants to extend AEM Core Components to create a custom Carousel Component.
How should the developer extend the Core Components?
To extend AEM Core Components and create a custom Carousel Component, developers should use the sling:resourceSuperType property to point to the core component. This approach allows for the inheritance of functionalities from the core components while still enabling customization. Making changes to the original component, copying it, or using sling:resourceType are not appropriate methods for extending core components in AEM.
Answer should be B. It can't be D. You don't need to copy the whole core component. Sling:resoourceMerger does the magic.
sling:resourceSuperType
D is the correct option. Please refer the link - https://helpx.adobe.com/experience-manager/using/extend_jave_corecomponents.html
@gkay2 That article says use sling:resourceSuperType
Answer-B Reference-https://docs.adobe.com/content/help/en/experience-manager-core-components/using/developing/customizing.html
Answer will be B
Good question