如何在 JCRRepository 中提交节点
我如何在 JCRRepositorty 中提交一个将在所有会话中持续存在的节点。
How can i commit a node in JCRRepositorty that will persist in all session.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
node.getSession().save()
。请参阅 保存( )。在 jcr 规范或 javadoc 中。node.getSession().save()
. See save(). in jcr spec or javadoc.