通过路径获取Alfresco NodeRef

时间:2017-03-31 02:58:43

标签: java lucene alfresco

我想获取存储在Alfresco中的文档(或空间)的NodeRef。

我的代码是Java,在Alfresco中运行(例如在AMP中)。

我不关心竞争条件,因为我只会将它用于我知道肯定已存在数天的节点。

怎么办?

3 个答案:

答案 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(使用Java代码:ISO9075.encode(level)
  • 进行转义

示例:

  • /应用:company_home /应用:字典/应用:space_templates /厘米:MyTemplate的
  • /app:company_home/app:shared/cm:abc/cm:def/cm:My_x0020_Document.txt
  • /应用:company_home /应用:共享/厘米:_x0031_23

要了解特定文档或文件夹的路径,节点浏览器(在管理工具中)是您的朋友:

Primary path in Alfresco Node Browser, ISO9075

我将该方法设为公共领域以上,如果您发现任何可以改进的内容,请修改或评论,谢谢! : - )

答案 1 :(得分:2)

最简单的方法可能是使用NodeLocatorServiceXPath 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上。你应该想出另一种方法来找到你想要的东西。