Hi team,I am running a JCR SQL2 query to fetch all sling:Folder nodes under a specific path in AEM, but it’s returning zero results, even though I can see folders under that path in CRXDE.Here is the query: SELECT * FROM [sling:Folder] AS s WHERE ISDESCENDANTNODE([/content/ohip]) Also tried with cq:...
Our team wants to explore using Lombok annotations (like @getter, @Setter, @Builder) in Sling Models that we export via Sling Model Exporter in AEM. What are the consequences, best practices, and advantages of using Lombok in this context?
Hi All,I am trying to deploy my custom oak indexes which is placed under "ui.apps/src/main/content/jcr_root/_oak_index" and added the filter <filter root="/oak:index" mode="update"/>When I try deploying my code locally below is the error [ERROR] ValidationViolation: Package of type 'APPLICATION' is ...
Hi all,I'm working on an AEM component and trying to get a property from the dialog using Sling Models. Here's a snippet of my code:@Model(adaptables = Resource.class)public class MyComponentModel {@injectprivate String title;public String getTitle() {return title;}} However, when I try to use this...