我正在尝试更改 JCR 节点的名称,但我不知道如何更改?你们有人有什么提示吗?
非常感谢。
Jackrabbit Wiki提供了一个示例:
void rename(Node node, String newName) throws RepositoryException
{
node.getSession().move(node.getPath(), node.getParent().getPath() + "/" + newName);
// Don't forget - not necessarily here at this place:
// node.getSession().save();
}