4

我尝试在 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:项目受保护”。怎么了?

4

1 回答 1

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 类中的 putFile() 实用程序方法。

于 2011-10-18T14:18:19.363 回答