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