Resolving a URL to a JCR Node object.

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);  

 Adobe

Get help faster and easier

New user?

Adobe MAX 2024

Adobe MAX
The Creativity Conference

Oct 14–16 Miami Beach and online

Adobe MAX

The Creativity Conference

Oct 14–16 Miami Beach and online

Adobe MAX 2024

Adobe MAX
The Creativity Conference

Oct 14–16 Miami Beach and online

Adobe MAX

The Creativity Conference

Oct 14–16 Miami Beach and online