我正在尝试在我的网络应用程序中包含优雅的 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)
非常欢迎任何建议或想法。