更新JCR 2.0中的节点内容

时间:2011-10-18 13:50:03

标签: jackrabbit jcr

我尝试更新JCR 2.0中的节点

InputStream content = node.getProperty("jcr:content").getProperty("jcr:data").getBinary().getStream();

//TODO same with stream
Binary value = ...;

Node contentNode = node.getProperty("jcr:content");
contentNode.setProperty("jcr:content", value);

我得到异常“javax.jcr.nodetype.ConstraintViolationException:Item is protected”。怎么了?

1 个答案:

答案 0 :(得分:4)

您所指的“jcr:content”通常是子节点的名称(通常是类型为nt:resource,或类似的东西),而不是属性。因此,您的代码示例应该是:

// read value
Binary value = node.getNode("jcr:content").getProperty("jcr:data").getBinary();

// update value
Binary value = ...;
node.getNode("jcr:content").setProperty("jcr:data", value);

另请参阅jackrabbit-jcr-commons库的JcrUtils class中的putFile()实用程序方法。