更新JCR 2.0中节点内容

发布于 2024-12-10 16:48:12 字数 374 浏览 0 评论 0原文

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

I try to update node in 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);

And I get exception "javax.jcr.nodetype.ConstraintViolationException: Item is protected". What`s wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紫罗兰の梦幻 2024-12-17 16:48:12

您所指的“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 类

The "jcr:content" you're referring to is typically the name of a child node (usually of type nt:resource, or something similar), rather than a property. Thus your code sample should rather be:

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

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

See also the putFile() utility methods in the JcrUtils class of the jackrabbit-jcr-commons library.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文