我的問題是,當資源包嘗試在JUnit測試期間獲取資源時,我得到MissingResourceException,但位於src/test/resources中的所有文件都編譯爲target/test我甚至可以使用它們來達到它們ResourceBundle無法在目標/測試類中找到資源
ClassLoader classLoader = getClass().getClassLoader();
File file = new File(classLoader.getResource("someFile.properties").getFile());
System.out.println(file.getAbsolutePath());
我該怎麼辦?