@hiral-vasa I have not used it yet, however, may be you can try something like -
<sly data-sly-test="${resource['image/jcr:primaryType']}">
<sly data-sly-resource="${'image' @ resourceType='test/components/content/image'}"></sly>
</sly>
or use the methods using member variables for eg. if "resolver"...
@user04148 The error seems to be related to a file lock on a file on the segment store and access related, however, your issue might be related to the node structure of the multifield. Could you also share the node structure for your multifield?
@AEM_Forum AEM Author instances are generally hosted on a remote server and run on port 4502. In author instances, users can create content and pass the content to the Publishers via activation. The author instance is also the environment where users will upload DAM assets, configure components, etc...
@gdeacon https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/error-failed-to-execute-goal-com-github-eirslett-frontend-maven/td-p/439761
This seems to be similar, have you tried this?
@rolliedub
SimpleDateFormat data = new SimpleDateFormat("dd-MMMM,yyyy");
String eventDate = "Jan 25, 2023, 2:35:00 PM";
Date date = new Date(eventDate);
String convert = data.format(date);
System.out.println("Date Format with dd MMMM yyyy : "+date);
output: 25-January, 2023.
@Codelime Did you check the permissions? also you can try clientlib rebuild- http://localhost:4502/libs/granite/ui/content/dumplibs.rebuild.html?invalidate=true
@YuSheng You are proabably missing allowproxy property-
allowProxy: If a client library is located under /apps, this property allows acces to it via proxy servlet.
In order for the client libraries under /apps to be accessible, a proxy servelt is used. The ACLs are still enforced on the client li...