0

我正在测试网络流,我需要找到包含应用程序流的 xml 文件。但我真的不明白为什么需要 put file: 在路径之前,为什么这是必要的?

声明路径:

protected static final String ARREL_FLOWS = "file:src/main/webapp/WEB-INF/flow/";
protected static final String FLOW_CONSULTA_DEUTE = ARREL_FLOWS +"consultaDeutes/consultaDeutes.xml";

测试路径流的代码:

@Test
    @Override
    protected FlowDefinitionResource getResource(FlowDefinitionResourceFactory resourceFactory) {
         FlowDefinitionResource resource = resourceFactory.createResource(FLOW_CONSULTA_DEUTE);
         Assert.assertNotNull(resource);
         return resource;
     }

这是 py 项目结构: 在此处输入图像描述

泰。

4

1 回答 1

0

好的,我找出原因!我觉得自己像只猴子..好吧:

如果不想放word文件:我必须使用方法:

  resource = resourceFactory.createFileResource(getPathRecursFlowProvatura());

不是

FlowDefinitionResource resource = resourceFactory.createResource(FLOW_CONSULTA_DEUTE);
于 2013-09-19T07:42:46.350 回答