Creating sub-node within jcr:content - 3rd node from jcr:content is not created
Hi all,
//Create a Session javax.jcr.Session session = repository.login( new SimpleCredentials("admin", "admin".toCharArray())); //Create a node that represents the root node Node root = session.getRootNode(); // Create NodeNode n2 = root.getNode("content/mysite/ mypage/jcr:content/n1/n2") Node n3 = root.addNode("n3"); // Create NodeNode n1 = root.getNode("content/mysite/ mypage/jcr:content/n1") Node n11 = root.addNode("n11");