1

我正在尝试在我的网络应用程序中包含优雅的 fs webjar。我在 pom.xml 文件中包含以下内容:

<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>graceful-fs</artifactId>
    <version>2.0.3</version>
</dependency>

这条线

 <script src="/webjars/graceful-fs/2.0.3/fs.js"></script>

在我的 index.html 文件中。

我不断收到以下错误:

GET http://localhost:8080/webjars/graceful-fs/2.0.3/fs.js 404 (Not Found)

非常欢迎任何建议或想法。

4

1 回答 1

2

该版本不存在该文件: http ://www.webjars.org/listfiles/org.webjars.npm/graceful-fs/2.0.3

尝试:http://localhost:8080/webjars/graceful-fs/2.0.3/graceful-fs.js

于 2015-10-26T13:48:33.887 回答