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

最佳答案

您所指的“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() 实用程序方法。

关于jackrabbit - JCR 2.0 更新节点内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7808282/

10-10 03:13