Hello, I am in the process of learning about the servlet sling
if you could please help me with a simple example of how to
save a name or any other data in a node of the crx using
the servlet sling I appreciate the collaboration
Solved! Go to Solution.
Hi,
Below servlet upload an Assets in JCR, similarly you can add node by using JCR Node API.
// Store content Session session = request.getResourceResolver().adaptTo(Session.class); Node adobe = req.getResourceResolver().getResource("/parent/node/path").adaptTo(Node.class);
session.save(); |
aem63app-repo/UploadAssets.java at master · arunpatidar02/aem63app-repo · GitHub
Hi,
Below servlet upload an Assets in JCR, similarly you can add node by using JCR Node API.
// Store content Session session = request.getResourceResolver().adaptTo(Session.class); Node adobe = req.getResourceResolver().getResource("/parent/node/path").adaptTo(Node.class);
session.save(); |
aem63app-repo/UploadAssets.java at master · arunpatidar02/aem63app-repo · GitHub
Views
Likes
Replies