Java JCR如何改变节点的顺序?
我正在使用 Jackrabbit 和 JCR,如何更改节点的顺序?
I am using Jackrabbit with JCR, how can I change the order of the nodes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在使用 Jackrabbit 和 JCR,如何更改节点的顺序?
I am using Jackrabbit with JCR, how can I change the order of the nodes?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
有多种方法;
1) 使用选项“orderable”创建父节点类型。
现在您可以使用 [orderBefore][1] 方法对节点进行排序。
2) 使用可以使用 SQL/XPATH 查询来对返回的节点进行排序。
例如
[1]: http://www.day.com/maven/jsr170/javadocs/jcr-1.0/javax/jcr/Node.html#orderBefore(java.lang.String, java.lang.String)
There are a number of ways;
1) Create a parent node type with the option "orderable".
Now you can use the [orderBefore][1] method to order the nodes.
2) Use can use a SQL/XPATH query to order the nodes returned.
e.g.
[1]: http://www.day.com/maven/jsr170/javadocs/jcr-1.0/javax/jcr/Node.html#orderBefore(java.lang.String, java.lang.String)