如何在cq5中基于路径创建目录?

时间:2015-06-01 10:08:21

标签: cq5 aem jcr

我有一个String,它是页面的路径,例如/content/xperia/public/events/eventeditor。我正在创建此页面的XML并将其保存到DAM,但我想将其保存在/content下的类似树结构中。

我尝试了以下代码

String page = "/content/xperia/public/events/eventeditor";
page = page.replace("/content", "/content/dam");
if (adminSession.nodeExists(page+ "/"+ "jcr:content")) {
    Node node = adminSession.getNode(page+ "/"+ "jcr:content");
    node.setProperty("jcr:data", sb.toString());                
} else {
    Node feedNode = JcrUtil.createPath(page,"nt:file", adminSession);           
    Node dataNode = JcrUtil.createPath(feedNode.getPath() + "/"+ "jcr:content", "nt:resource", adminSession);       
    dataNode.setProperty("jcr:data",sb.toString());
}

但它会出现以下错误

  

找不到匹配的子节点定义   {http://www.jcp.org/jcr/1.0}含量

因为存储库中没有这样的路径。有没有办法可以动态创建目录。因为要保存此文件,我需要在xperia/public/events下创建整个树/content/dam,然后将eventeditor.xml保存在该目录中。

请建议。

1 个答案:

答案 0 :(得分:5)

您的代码存在一些问题。 JcrUtil.createPath(String absolutePath, String nodeType, Session session)使用给定的NodeType创建所有不存在的中间路径。

这意味着所有节点xperia,public和events都是使用nt:file类型而不是sling:OrderedFolder创建的。

您可以使用createPath(String absolutePath, boolean createUniqueLeaf, String intermediateNodeType, String nodeType, Session session, boolean autoSave)方法来指定要创建的中间节点的类型。

String page = "/content/xperia/public/events/eventeditor";
page = page.replace("/content", "/content/dam");
page += ".xml";

if (adminSession.nodeExists(page+ "/"+ "jcr:content")) {
    Node node = adminSession.getNode(page+ "/"+ "jcr:content");
    node.setProperty("jcr:data", sb.toString());                
} else {
    Node feedNode = JcrUtil.createPath(page, true, "sling:OrderedFolder", "nt:file", adminSession, false);           
    Node dataNode = feedNode.addNode("jcr:content", "nt:resource");       
    dataNode.setProperty("jcr:data",sb.toString());
}

adminSession.save();