无法从资源加载文件,路径似乎错误

时间:2018-11-14 02:11:22

标签: java maven file spring-mvc path

我在同一级别上获得了文件夹服务和webapp。 内部服务中,我有MailServiceImpl.java文件。 在我里面有这个:

@Override
public String getHTML() throws MalformedURLException, IOException {
    File initialFile = new File("../webapp/src/main/webapp/resources/html/Mail.html");
    InputStream targetStream = FileUtils.openInputStream(initialFile);
    String htmlFile = IOUtils.toString(targetStream);
    IOUtils.closeQuietly(targetStream);
    return htmlFile;
}

现在,在我的应用程序的已部署版本中,该路径似乎失败了。任何想法如何使这条路相对? 该路径在我的计算机上工作正常。

这是我的文件夹的外观:

enter image description here

enter image description here

0 个答案:

没有答案