Last updated on
16 May 2021
Question
How do I resolve a URL to a JCR Node object?
Answer
To accomplish this you need to
1) Resolve the URL to a sling resource by calling the resolve method of
resourceResolver object.
2) Adopt the resource object to a jcr node by calling its' adoptTo method.
The following code would accomplish this.
Resource res = resourceResolver.resolve(uri);
Node myNode = res.adaptTo(Node.class);