我想获取存储在Alfresco中的文档(或空间)的NodeRef。
我的代码是Java,在Alfresco中运行(例如在AMP中)。
我不关心竞争条件,因为我只会将它用于我知道肯定已存在数天的节点。
怎么办?
答案 0 :(得分:2)
以下Java方法获取您指定的Alfresco文档或空间的NodeRef:
/**
* Get a NodeRef by its path.
* @path as displayed by the Node Browser.
* @return the NodeRef, or null if no NodeRef matches this path.
*/
private NodeRef getNode(String path) {
logger.debug("Getting NodeRef for path:\"" + path + "\"");
ResultSet results = null;
try {
StoreRef storeRef = new StoreRef(StoreRef.PROTOCOL_WORKSPACE, "SpacesStore");
results = searchService.query(storeRef, SearchService.LANGUAGE_LUCENE,
"PATH:\"" + path + "\"");
if (results.length() == 0) {
logger.debug("Zero matches for path: " + path);
return null;
}
NodeRef nodeRef = results.getNodeRef(0);
logger.debug("NodeRef for \"" + path + "\" is " + nodeRef);
return nodeRef;
}
catch(Exception e) {
logger.debug("Exception while searching for path: " + path, e);
if (results != null) {
results.close();
}
return null; // The node does not exist
}
finally {
if (results != null) {
results.close();
}
}
}
private SearchService searchService; // Be sure to set this, probably via Spring.
请注意path
中的每个级别必须:
ISO9075.encode(level)
)示例:
要了解特定文档或文件夹的路径,节点浏览器(在管理工具中)是您的朋友:
我将该方法设为公共领域以上,如果您发现任何可以改进的内容,请修改或评论,谢谢! : - )
答案 1 :(得分:2)
最简单的方法可能是使用NodeLocatorService和XPath locatorName + xpath表达式
在幕后,它使用搜索服务,但它为你包装了很多复杂性!
要使用它,请将NodeLocatorService
注入您的bean,然后执行以下操作:
Map<String,Serializable> params = new HashMap<>();
params.put("query", "/x:path/to:node/pa:th");
NodeRef nodeRef = nodeLocatorService.getNode("xpath",null,params);
其他NodeLocators exist用于其他查询,也可以远程查看via /alfresco/service/api/nodelocator/{node_locator_name}?params
答案 2 :(得分:0)
路径查询并不是最快的,特别是如果你在Lucene上。你应该想出另一种方法来找到你想要的东西。