AEM: as cloud Service
I'm getting below error in the error.log when using content fragment in my content pages.
org.apache.sling.scripting.sightly.render.ObjectModel Cannot access method configured on object com.adobe.cq.wcm.core.components.internal.models.v1.ExperienceFragmentImpl@10ff42d2
java.lang.reflect.InvocationTargetException: null
...
Kindly please let me know what causing this error and how to resolve it.
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @Woobi,
As per the error, please check if the core project is installed and resolved in your instance. The issue is regarding the "com.adobe.cq.wcm.core.components.internal.models.v1.ExperienceFragmentImpl" model here.
Hope this helps.
Thanks,
Kiran Vedantam
UPDATE: i misread this error (thought you were referencing the impl class, but really it looks like the HTL cannot instantiate the Sling Model via the interface reference (which is bound to that Impl). See Arun's answer below.
You are trying to access an INTERNAL class as denoted by the "internal" package name: com.adobe.cq.wcm.core.components.internal.models.v1.ExperienceFragmentImpl
Classes under internal packages are considered internal implementation details of the project and cannot be used by Consumer code.
In AEM development, typically you will have public interfaces you can code against, but the implementation (usually post-fixed with Impl) will not be exported by the bundle therefore not available for you to directly use.
Instead of using the Impl directly in Core Components, you should leverage the Sling Model Delegation pattern described on the Core Components Github project: https://github.com/adobe/aem-core-wcm-components/wiki/Delegation-Pattern-for-Sling-Models
Try to refresh the bundle, it will resolve the issue.
Views
Likes
Replies
Views
Likes
Replies