1

我在以下文件夹层次结构中有两个文件src/test/resources/folderA/fileAsrc/test/resources/folderA/fileB. 我从application.properties被测资源 ( src/test/resources/application.properties) 中引用了这些文件。参考如下:

propertyA=classpath:/folderA/fileB
propertyA=classpath:/folderA/fileA

不幸的是,这显然不起作用。它打破了以下例外:

Caused by: java.io.FileNotFoundException: classpath:/folderA/fileA (No such file or directory)

我还尝试了以下方法:

propertyA=classpath:folderA/fileB
propertyA=/folderA/fileB
propertyA=folderA/fileB 

他们也没有工作。那么从测试应用程序属性中引用资源文件以便加载属性的适当方法是什么?

4

0 回答 0