我正在尝试使用 Webjar 将 jQuery 添加到我的启动应用程序中。我从本教程中获得了灵感:http: //spring.io/blog/2014/01/03/utilizing-webjars-in-spring-boot
在我的 pom.xml 中,我添加了:
<dependency>
<groupId>org.webjars</groupId>
<artifactId>jquery</artifactId>
<version>2.1.1</version>
</dependency>
在我的 html 文件中(使用 ThymeLeaf 作为我的模板引擎 - 不确定这是否重要)我有以下内容:
<script src="webjars/jquery/2.1.1/jquery.min.js"></script>
文件不加载。我已经尝试过 src="webjars...." 和 src="/webjars..."。
我可以在我的项目中列出的 Maven 依赖项中看到 jar。当我探索这个 jar 时,我可以看到 META-INF/resources/webjars/jquery/2.1.1/jquery.min.js。根据我对 Boot 寻找资源的理解,我认为它应该找到这个。
有人看到这种行为吗?关于如何解决它的任何提示?